Changes between Version 7 and Version 8 of ImportantCase1


Ignore:
Timestamp:
02/24/25 16:01:48 (6 weeks ago)
Author:
222039
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ImportantCase1

    v7 v8  
    2121$stmt->execute();
    2222}}}
     23
     24{{{#!sql
     25$all_books = [];
     26
     27while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
     28  $all_books[] = $row;
     29}
     30
     31}}}