Ulrike: supplied argument is not a valid MySQL-Link resource

Beitrag lesen

Vielen Dank, Andreas:

Also hier erstmal der Code:

---cut---
function emailTaken($email){
   global $conn;
   if(!get_magic_quotes_gpc()){
      $email = addslashes($email);
   }
   $q = "select email from a, b where email = '$email'";
   $result = mysql_query($q,$conn); [hier die besagte Fehlermeldung]
   return ($result);
}
---cut---

und

---cut---
function addNewUser($email, $password){
   global $conn;
   $q = "insert into a set
    email = '$email',
    password = '$password'";
   return mysql_query($q,$conn); [hier die besagte Fehlermeldung]
}
---cut---

Auf meinem localhost laeuft:

  • W2k
  • Apache 1.3.28 (W32)
  • MySQL 4.0.18
  • PHP 4.3.4

Auf dem Server:

  • Linux
  • Apache 1.3.29 (Unix)
  • MySQL 4.0.18
  • PHP 4.3.4

Herrzlichen Dank fuer potenzielles Feedback.
Samstags-Gruss
Ulrike