Sophie

Sophie

distrib > Mageia > 4 > i586 > by-pkgid > 3c81c2ef4f93f62199f9086acbf02ded > files > 13

ezcomponents-Database-1.4.7-3.mga4.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();

?>