Hallo, ich habs jetzt folgendermaßen probiert, leider weiß ich nicht, ob das jetzt so funktioniert und klappt. Die Erklärung, was ich machen möchte usw ist eine Seite weiter unter ???geschachtelte Ausgabe???. Ich denke, das brauch ich nicht nochmal erklären, hat bestimmt fast jeder gelesen, wenn nicht, dann erkäre ich es gerne nochmal.
Er bringt mir folgende Fehler:
Warning: Supplied argument is not a valid MySQL result resource in /usr/local/httpd/htdocs/phpMyInventory/details_software.php on line 12
Warning: Invalid argument supplied for foreach() in /usr/local/httpd/htdocs/phpMyInventory/details_software.php on line 18
PHP-Code:
$abteilungen=array();
$sql="SELECT DISTINCT id_abteilung FROM $Abteilung";
$result=mysql_query($sql);
<--------------------------------line 12
while($row=mysql_fetch_row($result))
{
$Abteilungen[]=$row;
}
<----------------------------line 18
foreach($id_abteilung as $Abteilung)
{
$sql="SELECT pk_asset FROM $hardware WHERE id_abteilung='$abteilung_fk'";
$result=mysql_query($sql);
while($row=mysql_fetch_row($result))
{
print $row;
}
}
?>
Warning: Supplied argument is not a valid MySQL result resource in /usr/local/httpd/htdocs/phpMyInventory/details_software.php on line 12
Warning: Invalid argument supplied for foreach() in /usr/local/httpd/htdocs/phpMyInventory/details_software.php on line 18
Kommentar