1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
include("connexion.inc");
mysql_connect("$host","$user","$password");
mysql_select_db("$database");
$req_resultats="insert into participant SET
IdParticipant='',
Nom='$Nom',
Prenom='$Prenom',
Adresse1='$Adresse1',
Adresse2='$Adresse2',
CodePostal='$CodePostal',
Ville='$Ville',
Sexe='$Sexe',
DateNaissance='$DateNaissance',
Courriel='$Courriel',
Telephone='$Telephone',
Licence='$Licence',
NLicence='$NLicence',
Club='$Club'";
$result=mysql_query("$req_resultats"); |
Partager