Hallo Leute,
ich find einfach den Fehler nicht, könnt ihr mir mal bitte helfen.
Hier der Code:
Folgender Fehler kommt:
ich find einfach den Fehler nicht, könnt ihr mir mal bitte helfen.
Hier der Code:
PHP:
<?php
$host = "localhost";
$user = "***";
$pass = "***";
$database = "hallo";
$table = "tabelle";
$fach = "mathe";
$db = mysql_pconnect($host, $user, $pass) or die (mysql_error());
mysql_select_db($database, $db) or die (mysql_error());
function hallo($fach, $klasse){
$sql = "SELECT * FROM $table WHERE `klasse` = $klasse AND 'fach' = $fach";
$result = mysql_query($sql);
while ($row = mysql_fetch_array($result)){
$wert = $row['text'];
echo $wert;
}
}
switch ($_GET["inc"]){
case "10":
hallo("mathe", "10");
}
Code:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\xampp\htdocs\mathe.php