lesen hilft:
http://www.selfphp.info/funktionsref...onen/index.php
Forumssuche hilft
und Google hilft!
das reicht bei mir zum überprüfen:
PHP-Code:
$user = "123";
$pwd = "4567";
$result = mysql_db_query("dbtest","SELECT * FROM User WHERE Nummer='$user' AND Passwort='$pwd'");
$row = mysql_fetch_row ($result);
if(is_array($row))
{
echo "eingeloggt";
}
?>