Voilà mon code, après cinquante milles retouches dessus (et il ne marche toujours pas ! mais je vais retourner voir les sites que tu m'as dit, une fois de plus, ça sera peut-être bon lol)
<? include ('_connexion.php');
echo "<form name='data' method='post' action='?page=5'>";
echo "Email :";
echo "<br>";
echo "<input name=Email type=text>";
echo "<br>";
echo "Mot de passe :";
echo "<br>";
echo "<input name=Password type=password>";
echo "<br>";
echo "Nom :";
echo "<br>";
echo "<input name=NomCli type=text>";
echo "<br>";
echo "Prénom :";
echo "<br>";
echo "<input name=PrenomCli type=text>";
echo "<br>";
echo "Adresse :";
echo "<br>";
echo "<input name=AdrCli type=text>";
echo "<br>";
echo "Téléphone :";
echo "<br>";
echo "<input name=TelCli type=text>";
echo "<br>";
echo "<br>";
echo "<input type=submit name=Submit value=Ajouter>";
echo "</form>";
$NomCli=''; if(!empty($_POST['NomCli']))
$NomCli=($_POST['NomCli']);
$PrenomCli=''; if(!empty($_POST['PrenomCli']))
$PrenomCli=$_POST['PrenomCli'];
$AdrCli=''; if(!empty($_POST['AdrCli']))
$AdrCli=$_POST['AdrCli'];
$TelCli='';if(!empty($_POST['TelCli']))
$TelCli=$_POST['TelCli'];
$Email=''; if(!empty($_POST['Email']))
$Email=$_POST['Email'];
$Password=''; if(!empty($_POST['Password']))
$Password=$_POST['Password'];
$Message="";
// on ajoute le client
$query = "INSERT INTO client (NomCli,PrenomCli,AdrCli,TelCli,Email,Password)";
$query .= " VALUES($NomCli,$PrenomCli,$AdrCli,£TelCli,$Email,$Password)";
$result = mysql_query($query);
// et on prépare le message à afficher pour confirmation
echo "<basefont face=comic Sans MS color=#FFFFFF>";
$message = "Bonjour<b> ".$PrenomCli." ";
$message .= $NomCli;
echo $message;
?>