blob: f72554529166d4a1e3bc17c0cabfbfa134713cb9 [file] [log] [blame]
<?php
$db = ezcDbInstance::get();
$rows = $db->query( 'SELECT * FROM quotes' );
// Iterate over the rows and print the information from each result.
foreach( $rows as $row )
{
print_r( $row );
}
?>