Hallo alle zusammen!
Ich habe das Problem, dass beim folgenden Code:
Ich immer diese Fehlermeldung bekomme:
Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in functions.php on line 5
Was mache ich falsch?
Ich habe das Problem, dass beim folgenden Code:
PHP:
function is($category,$id,$city)
{
$db = connect_db();
$row=mysql_fetch_assoc(mysql_query("SELECT * FROM $category WHERE id = '$id'", $db));
$is=mysql_fetch_assoc(mysql_query("SELECT * FROM citys WHERE city = '$city'", $db));
$buildcondition = explode("|", $row[buildcondition]);
$researchcondition = explode("|", $row[researchcondition]);
foreach($buildcondition as $condition)
{
$condition = explode(":", $condition);
if ($condition[1] >= $is[$condition[0]])
{
$is = true;
}
}
foreach($researchcondition as $condition)
{
if(preg_match("!#$condition#!i",$is[researches]))
{
$is = true;
}
}
mysql_close($db);
return $is;
}
Ich immer diese Fehlermeldung bekomme:
Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in functions.php on line 5
Was mache ich falsch?