Changes between Version 7 and Version 8 of ImportantCase1
- Timestamp:
- 02/24/25 16:01:48 (6 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImportantCase1
v7 v8 21 21 $stmt->execute(); 22 22 }}} 23 24 {{{#!sql 25 $all_books = []; 26 27 while($row = $stmt->fetch(PDO::FETCH_ASSOC)) { 28 $all_books[] = $row; 29 } 30 31 }}}