EDIT: The first script get no errors, only a white screen. And so I tested a while and here the result. (And learned the basics...)
Fatal error: Call to a member function rowCount() on a non-object in /var/www/tabelle/pizza/test_pdo3.php on line 11
First the PDO version, after that a version without PDO which work.
<?php
//Connect
$db = new PDO('mysql:host=localhost;dbname=;pizzadb3', 'auser', 'passw',
array('charset'=>'utf8'));
//Ausführen des Querys mit möglicher Fehlerbehandlung per try, catch
$stmt = $db->query('select * from pizzeria_table');
//Anzahl ermitteln
$row_count = $stmt->rowCount();
echo 'Anzahl: '.$row_count.'<br/>';
//Jeder Datensatz aus $stmt wird zur Ausgabe in ein temp-Array $row gespeichert
while($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
echo $row['laden_name'].' / '.$row['vorwahl'].'<br/>';
}
?>
This version do what to do.
<?php
//Connect
$conn = mysql_connect('localhost', 'user', 'passw');
mysql_select_db('pizzadb3', $conn);
mysql_set_charset('UTF-8', $conn);
$sql = "select * from pizzeria_table";
//Ausführen des Statements und evtl. Fehlerbehandlung mit 'die'
$result = mysql_query($sql) or die (mysql_error());
//Anzahl der Datensätze ermitteln
$row_count = mysql_num_rows($result);
echo 'Anzahl: '.$row_count.'<br/>';
//Jeder Datensatz aus $result wird zur Ausgabe in ein temp-Array $row gespeichert
while($row = mysql_fetch_assoc($result)) {
echo $row['laden_name'].' / '.$row['vorwahl'].'<br/>';
}
?>
What could I do?