PHP interesse |
|
mysql_query("INSERT INTO Sponsor (Naam, Contactadres, Date) VALUES ('".$naam."','".$email."', NOW()") OR die (mysql_error());
mysql_query("INSERT INTO Sponsor (Naam, Contactadres, Date) VALUES ('".$naam."','".$email."', NOW()") OR die (mysql_error());
moet
mysql_query("INSERT INTO Sponsor (Naam, Contactadres, Date) VALUES ('".$naam."','".$email."', NOW()) OR die (mysql_error()");
mysql_query("INSERT INTO Sponsor (Naam, Contactadres, Date) VALUES ('".$naam."','".$email."', NOW()) OR die (mysql_error()");
zijn
|