salem
j'ai un prob avec php voilà mon code j n sai pas pourquoi l'insertion ne se fait pas

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Document sans titre</title>
<style type="text/css">
<!--
body {
background-image: url(WWWnew.jpg);
background-repeat: no-repeat;
}
.Style1 {
font-family: Arial, Helvetica, sans-serif;
font-style: italic;
font-weight: bold;
}
</style></head>

<body>
<?php
include('connex_base.php');
if (isset($_POST["valider"])){
$email=$_POST["email"];
$nom=$_POST["nom"];
$prenom=$_POST["prenom"];
$tel=$_POST["tel"];
$adresse=$_POST["adresse"];
$login=$_POST["login"];
$pwd=$_POST["pwd"];
$adr=$_POST["adr"];
$numcarteB=$_POST["numcarteB"];
$codecarteB=$_POST["codecarteB"];
// creation de la requete sql :
$re="INSERT INTO `sve`.`sve_client` (
`id_client` ,
`nom_client` ,
`prenom_client` ,
`tel_client` ,
`email_client` ,
`login_client` ,
`pwd_client` ,
`adr_client` ,
`numcarteB_client` ,
`codecarteB_client`
)
VALUES (
NULL , '$nom', '$prenom', '$tel', '$email', '$login', '$pwd', '$adr', '$numcarteB', '$codecarteB');";

$result=mysql_query($re,$base)
or die(mysql_error());

mysql_close ();
?>

<p>&nbsp;</p>
<center>
<p>&nbsp;</p>
<p class="Style1"><tt><h2>Nouveau client
</h2> </tt>
</center>
<form name="inscription" action"insc_client2.php" method="POST">
<center>
<table width="405" border="1">
<tr>
<td width="148"><label>Email</label></td>
<td width="241"><label>
<input class="mod-input" name="Email" />
</label></td>
</tr>
<tr>
<td>Nom</td>
<td><label>
<input class="mod-input" name="Nom" />
</label></td>
</tr>
<tr>
<td>Prenom</td>
<td><label>
<input class="mod-input" name="Prenom" />
</label></td>
</tr>
<tr>
<td>Telephone</td>
<td><label>
<input class="mod-input" name="Telephone" />
</label></td>
</tr>
<tr>
<td>Login</td>
<td><label>
<input class="mod-input" name="Login" />
</label></td>
</tr>
<tr>
<td>Password</td>
<td><label>
<input class="mod-input" name="Password" />
</label></td>
</tr>
<tr>
<td>Adresse</td>
<td><label>
<input class="mod-input" name="Adresse" />
</label></td>
</tr>
<tr>
<td height="30">Numero Carte Bancaire </td>
<td><label>
<input class="mod-input" name="Numero Carte Bancaire" />
</label></td>
</tr>
</table> </center>
<label></label>
<center>
<table width="406" height="35" border="1">
<tr>
<td width="148">Code Carte Bancaire </td>
<td width="242" ><label>
<input class="mod-input" name="Code Carte Bancaire" />
</label></td>
</tr>

</table>
<input type="submit" value="Valider" />
<input type='reset' value='Annuler' />
</center>

<p>&nbsp;</p>
</form>
<?php }
?>
</body>
</html>
aider moi svp