hi @ll...
ich hab ne wahrscheinlich für die profis einfache frage ... also ich will prüfen ob mein db feld namens txtNfoName gefüllt ist oder nich, allerdings bekomm ich anscheind lt. fehlermeldung das feld nich raus ...
--->
Warning: Supplied argument is not a valid MySQL result resource in c:\inetpub\apacheroot\tripod\index.php on line 81
<---
thx a lot - nuggi
ich hab ne wahrscheinlich für die profis einfache frage ... also ich will prüfen ob mein db feld namens txtNfoName gefüllt ist oder nich, allerdings bekomm ich anscheind lt. fehlermeldung das feld nich raus ...
--->
Warning: Supplied argument is not a valid MySQL result resource in c:\inetpub\apacheroot\tripod\index.php on line 81
<---
PHP-Code:
<?
// nfo avail yes or no
$nfo_avail = mysql_query("select txtNfoName from tblRel where cntRel=$cntRel");
$erg = mysql_fetch_array($nfo_avail);
echo $mysql_error;
if (!$erg=="'NULL'" or !!$erg=="' '")
{
echo " <a href=\"JavaScript:oeffne_fenster('detail.php?cntRel=$cntRel')\">";
echo $txtNfoName;
echo "</a>";
}
else
{
echo ("no nfo!");
}
?>
thx a lot - nuggi
Kommentar