Sophie

Sophie

distrib > Mageia > 2 > i586 > by-pkgid > 883733823d6cff8395fc4876c4c33e9d > files > 13

ezcomponents-Database-1.4.7-1.mga2.noarch.rpm

<?php

$db = ezcDbInstance::get();
$stmt = $db->prepare( 'SELECT * FROM quotes where author = :author' );
$stmt->bindValue( ':author', 'Robert Foster' );

$stmt->execute();
$rows = $stmt->fetchAll();

?>