Strafi
Erfahrenes Mitglied
Hallo,
Ich stelle gerade ein Applikation auf PDO um. Ich habe eine Funktion:
Mit PDO habe ich es so versucht;
Bringt aber nicht das gewünschte ergebnis.
Kann mir einer erklären wie ich das bei PDO mache...
Grüße
Ich stelle gerade ein Applikation auf PDO um. Ich habe eine Funktion:
PHP:
function Fetch()
{
if($this->error)
{
$this->getError();
$return = null;
}
else
{
while($row = mysql_fetch_assoc($this->result))
{
$return[] = $row;
}
}
if (isset($return)){
return $return;
}
Mit PDO habe ich es so versucht;
PHP:
foreach($db->query('select * from products') as $row) {
$column[] = $row;
}
Bringt aber nicht das gewünschte ergebnis.
Kann mir einer erklären wie ich das bei PDO mache...
Grüße