Besoin d'un œil externe pour vérifier mon code (envoi données vers mysql)
bonjour a tous, j'ai ecrit un code php qui, normalement, devrait envoyer les données d'un formulaire vers ma bdd, mais il ne marche pas...
Qui peut y jetter un coup d'oeuil svp? merci.
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>inscription</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<style type="text/css">
form
{
text-align:center;
}
</style>
<body>
<?php
if (isset($_POST['pseudo']) AND isset($_POST['mdp']))
{
if ($_POST['pseudo'] != NULL AND $_POST['mdp'] != NULL)
{
mysql_connect("localhost", "root", "");
mysql_select_db("cul");
$pseudo = mysql_real_escape_string(htmlspecialchars($_POST['pseudo']));
$mdp = mysql_real_escape_string(htmlspecialchars($_POST['mdp']));
mysql_query("INSERT INTO membres VALUE('', '$pseudo', '$mdp')");
mysql_close();
}
}
?>
<form method="post" action="index.php">
<p>
Pseudo : <input type="text" name="pseudo" /><br />
Mot de passe : <input type="text" name="mdp" /><br />
<input type="submit" value="enregistrer" />
</p>
</form>
</body>
</html> |
je precises que quand je charges la page, seul le formulaire apparait, donc normalement le code devrait marcher...
Y'a t il un petite simple erreur quelque part qui bloque tout?
merci encore.