login  Naam:   Wachtwoord: 
Registreer je!
 Forum

syntax fout in registreer script.

Offline Scythen - 08/03/2006 21:31
Avatar van ScythenPHP gevorderde Ik krijg deze fout: Er is iets fout in de gebruikte syntax bij ')' in regel 1.

Als ik naar localhost/register.php ga.

script:

  1. <?php
  2. include('connect.php');
  3.  
  4. if(!empty($_POST)){
  5. $username=$_POST['username'];
  6. $password=$_POST['password'];
  7. $passwordtwo=$_POST['passwordtwo'];
  8. $email=$_POST['email'];
  9.  
  10.  
  11. $sql_query = "SELECT * FROM gebruikers WHERE email='".$email."';";
  12. $result = mysql_query($sql_query);
  13.  
  14. if(mysql_num_rows($result) > 0) {
  15. $text = "Het ingevulde email-adres bestaat al. U vulde $email in. <A HREF=\"" . $_SERVER["PHP_SELF"] . "\">Opnieuw registeren</A>";
  16. die($text);
  17. }
  18. else{
  19. $sql_query = "INSERT INTO gebruikers (id, password, email,) ";
  20. $sql_query .="VALUES ('".$password."', '".$username."',);";
  21. $result = mysql_query($sql_query) or die(mysql_error());
  22. $text="Registration completed, to log in: <A HREF=\"login.php\">Login!</A>";
  23. die($text);
  24. }
  25. }
  26. ?>

1 antwoord

Gesponsorde links
Offline timo - 08/03/2006 21:33
Avatar van timo PHP ver gevorderde denk ik connect.php... zet eens error_reporting(E_ALL); boven de pagina en zie wat php teruggeeft als error...
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.172s