8 lines
176 B
PHTML
8 lines
176 B
PHTML
<?php
|
|
|
|
//disable buffering so that data is sent as we retrieve it from the database
|
|
while (@ob_end_flush());
|
|
|
|
foreach($this->rows as $row) {
|
|
echo json_encode($row)."\n";
|
|
}
|