PHP-Code:
<?
$username = "root";
$password = "";
$hostname = "localhost";
$dbh = mysql_connect($hostname, $username, $password);
$selected = mysql_select_db("swfdb",$dbh);
$result = mysql_query("SELECT Name, ARTIKEL_BEZEICHNUNG FROM teile, liferanten where teile.LIEFERANT == lieferanten.id");
while ($row = mysql_fetch_array($result))
{
echo "$row[Name] - ";
echo "$row[ARTIKEL_BEZEICHNUNG]<br>";
}
mysql_close($dbh);
?>
Der Browser gibt folgende Fehlermeldung:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in c:\apache\htdocs\datenbankprojekt\connect.php on line 11
gruss luc
danke für die Hilfe
Kommentar