Komischer MySQL- PHP- Bug :-/
lima-city → Forum → Programmiersprachen → PHP, MySQL & .htaccess
-
Ich hab mal wieder nen komischen Bug....
<?php if (!isset($_GET["cat"]) OR trim($_GET["cat"]) == "") { include "game/start.php"; } else { $sql = "SELECT target FROM menu WHERE name = '".trim($_GET["cat"])."'"; $result=mysql_query($sql) OR die("Fehler: ".mysql_error()); if (mysql_num_rows($result) = 1) { $row = mysql_fetch_assoc($result); include $row["target"]; } } ?>
Fehler ist:
Fatal error: Can't use function return value in write context in D:\XAMPP\xampp\htdocs\page\cat.php on line 8
In der mysql ist ne eindeutige Zuordnung name - target... ich ?berseh sicher nur wieder was X_X
-
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
Hi
<?
<?php
if (!isset($_GET["cat"]) OR trim($_GET["cat"]) == "")
{
include "game/start.php";
} else {
$temp=trim($_GET["cat"]);
$sql = "SELECT target FROM menu WHERE name = '$temp'";
$result=mysql_query($sql) OR die("Fehler: ".mysql_error());
if (mysql_num_rows($result) = 1)
{
$row = mysql_fetch_assoc($result);
include $row["target"];
}
}
?>
?>
So w?rde ich es machen.
b2k-fan -
das selbe in blau, ohne Leerzeilen:
Fatal error: Can't use function return value in write context in D:\XAMPP\xampp\htdocs\GAME\page\cat.php on line 10
also wieder bei mysql_num_rows()... -
hat sich gekl?rt, der Fehler war wirklich biem numrows:
if (mysql_num_rows($result) = 1)
--->
if (mysql_num_rows($result) == 1)
~~CLOSED~~ -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage