Formation

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

FORMATION

<!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 nom</title>

</head>

<body>

<form method="post" enctype="multipart/form-data">

<!-- enctype="multipart/form-data" pour enregistrer les fichiers dans $_FILES -->

<table>

<tr><td><label>Nom</label></td>

<td><input type="text" name="nom"/></td>

</tr>

<tr><td><label>prenom</label></td>

<td><input type="text" name="prenom"/></td>

</tr>

<tr><td><label>Age</label></td>

<td><input type="text" name="age"/></td>

</tr>

<tr><td><label>Sexe</label></td>

<td>H<input type="radio" name="sex" value="h"/>F<input type="radio" name="sex"


value="f"/></td>

</tr>

<tr><td><label>Diplome</label></td>

<td>Bac<input type="checkbox" name="dip[]" value="bac"/>licence<input type="checkbox"


name="dip[]" value="licence"/>Master<input type="checkbox" name="dip[]" value="master" /></td>
</tr>

<tr><td><label>Ville</label></td>

<td><select><option value="">choisir ville</option>

<option value="tunis">Tunis</option>

<option value="mednine">Mednine</option>

<option value="bizerte">Bizerte</option>

</select>

</option></td>

</tr>

<tr><td><label>Photo</label></td>

<td><input type="file" name="img" /></td></tr>

<tr><td><input type="submit" value="envoyer" name="envoyer"/></td>

<td><input type="reset" value="Annuler"/></td>

</tr>

</td>

</tr></table></form>

<?php

var_dump($_POST);echo "<br><br>";

if(!empty($_POST['nom'])){

echo "votre nom est ".$_POST['nom'];

echo "<br><br>";

if(isset($_POST['dip'])){

$diplome="";

foreach($_POST['dip'] as $key=>$dip)

{
$diplome=$diplome.' '.$dip.'//';

echo "votre nom est ".$diplome;

if(!empty($_FILES)){

echo "<br><br>";

var_dump ($_FILES);

echo "<br><br>";

?>

</body>

</html>

You might also like