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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
<?php
require_once("_connect.php");
// Cas de l'insertion (l'adhérant n'existe pas dans la base de données)
$sql = "INSERT INTO galette2_adherents (
numero_adh,
nom_adh,
prenom_adh,
id_statut,
pseudo_adh,
login_adh
) VALUES (
'".$numero_adh."',
'".$nom_adh."',
'".$prenom_adh."',
'".$id_statut."',
'".$pseudo_adh."',
'".$login_adh."'
)";
$result = mysql_query($sql);
if ($result)
{
header("Location: essai.php");
// Marche à condition qu'il n'y ai rien d'écrit précédemment dans la page
}
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/ico" href="/favicon.ico">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<meta http-equiv="Content-Type" content="text/html; charset=iso 8859-1">
</head>
<body>
<div>
<h1>Ajouter Adhérent</h1>
</div>
<form name="frmAjout" method="post" action="<?php echo $_SERVER['PHP_SELF']?>" >
<table align="center" width="38%" border="1px" style="background-color:#f2e3c4">
<tr>
<td>Numéro Adhérent : </td>
<td>
<input type="text" value="<?php if ( isset($_POST['numero_adh']) ) echo htmlentities($_POST['numero_adh']) ?>" />
</td>
<td>
<i> N° Adhérent = CGA0000
</td>
</tr>
<tr>
<td>Nom :</td>
<td>
<input type="text" name="nom_adh" value="<?php if ( isset($_POST['nom_adh']) ) echo htmlentities($_POST['nom_adh']) ?>" />
</td></tr>
<tr>
<td>Prénoms :</td>
<td>
<input type="text" name="prenom_adh" value="<?php if ( isset($_POST['prenom_adh']) ) echo htmlentities($_POST['prenom_adh']) ?>" />
</td>
</tr>
<tr>
<td>Statut :</td>
<td>
<input type="text" name="id_statut" value="<?php if ( isset($_POST['id_statut']) ) echo htmlentities($_POST['id_statut']) ?>" />
</td>
</tr>
<tr>
<td>Pseudo Adhérent :</td>
<td>
<input type="text" name="pseudo_adh" value="<?php if ( isset($_POST['pseudo_adh']) ) echo htmlentities($_POST['pseudo_adh']) ?>" />
</td>
</tr>
<tr>
<td>Login Adhérent :</td>
<td>
<input type="text" name="login_adh" value="<?php if ( isset($_POST['login_adh']) ) echo htmlentities($_POST['login_adh']) ?>" />
</td>
</tr>
</table>
<br/>
<div style="text-align:center;">
<input type="submit" name="submit" value="Envoyer l'Ajout" />
</div>
<br />
</form>
</body>
</html> |
Partager