also ich habe folgenden Code für die Suche
es wird folgender fehler ausgegeben.
Fatal error: Call to undefined function: result() in /usr/local/httpd/htdocs/phpMyInventory/suchergebnis.php on line 31
hab jetzt ne halbe stunde gesucht, aber ich find da nix.
Darf man vielleicht like nicht so verwenden???
PHP Code:
<?php
echo "by using this Keyord: <big>$ug</big><p>";
$sqlab = " select name, email, titel, system, abteilung, beitrag, solution, datum from gb ";
$sqlab .= " where name = '$ug' OR email = '$ug' OR titel ='$ug' OR system = '$ug' OR abteilung = '$ug' OR beitrag like '%$ug%' OR solution like '%$ug%' order by datum ";
$res = dbquery($sqlab);
$num = mysql_num_rows($res);
if ($num==0)
{ echo "Sorry, but there are no matches found.<br>";
echo "Are you sure, that you type in the correct word!";}
for ($i=0; $i<$num; $i++)
{
$na = mysql_result($res, $i, "name");
$em = mysql_result($res, $i, "email");
$ti = mysql_result($res, $i, "titel");
$sy = mysql_result($res, $i, "system");
$ab = mysql_result($res, $i, "abteilung");
$be = mysql_result($res, $i, "beitrag");
$so = mysql-result($res, $i, "solution"); <-------------------------------------line 31
$da = mysql_result($res, $i, "datum");
p
Fatal error: Call to undefined function: result() in /usr/local/httpd/htdocs/phpMyInventory/suchergebnis.php on line 31
hab jetzt ne halbe stunde gesucht, aber ich find da nix.
Darf man vielleicht like nicht so verwenden???
Comment