Bonjour, j'ai créé un petit formulaire, j'aimerais ajouter des conditions et rediriger sur telle ou telle page en fonction de la formation. mais il ne marche pas pouvez vous me dire se qu'il ne marche pas.



<?php

if($post['formation']=='linux')
{	
		header("location: D:/PROGRAMME EPITEL/LINUX");
			
} 

if($post['formation']=='RIT')
{	
		header("location: D:/PROGRAMME EPITEL/RIT");
			
} 
if($post['formation']=='LPI')
{	
		header("location: D:/PROGRAMME EPITEL/TELECOM");
			
} 
if($post['formation']=='SECURITE')
{	
		header("location: D:/PROGRAMME EPITEL/SECURITE");
			
} 

if($post['formation']=='TELECOM')
{	
		header("location: D:/PROGRAMME EPITEL/TELECOM");
			
} 
?>


	
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
   <head>
       <title></title>
       <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
       
   </head>
   <body>
   
   
   
  
   
   
   <div id="contenu">
		<!--Le contenu -->
		<h1 style="text-align:center;">Demande de Catalogue des formations Kantis</h1>
		
		<form method="post" id="formulaire_contact" target="">
		
		<fieldset>
		<legend> Formulaire de contact</legend>
       <label for="formation">formation* : </label>
	   <select name="formation">
                  <option value="select">SELECT</option>
                  <option value="linux">LINUX</option>
                  <option value="LPI">LPI</option>
                  <option value="RIT">RIT</option>
                  <option value="SECURITE">SECURITE</option>
                  <option value="TELECOM">TELECOM</option>
         </select>  <br/>        
                 
		<label for="nom">Nom* : </label><input type="text" name="nom" id="nom" value="<?php if(isset($nom)) echo $nom; ?>"/><br/>
		<label for="prenoms">Prenoms* : </label><input type="text" name="prenoms" id="prenoms" value="<?php if(isset($prenoms)) echo $prenoms; ?>"/><br/>
		<label for="email">E-mail* :</label><input type="text" name="email" id="email" value="<?php if(isset($email)) echo $email; ?>" /><br/>
        <label for="profession">Profession* :</label><input type="text" name="profession" id="site" value="<?php if(isset($profession)) echo $site; ?>" /><br/>
		<label for="entreprise">Entreprise :</label><input type="text" name="entreprise" id="entreprise" value="<?php if(isset($entreprise)) echo $entreprise; ?>" /><br/>
		
		<input type="submit" value="Envoyer"/><span style="color:red"> <?php echo $erreur; ?></span><span style="color:green"> <?php echo $info; ?></span>
		</fieldset>
		</form>
			

    </div>
   
   
  
   
       
   </body>
</html>


merci pour l'aide
Modifié par fabnguess (08 May 2013 - 18:01)
D'abord c'est $_POST et pas $post. Ensuite, ça "D:/PROGRAMME EPITEL/LINUX" c'est un chemin sur le disque, pour ta redirection il te faut une URL.