Redirection vers une autre page php
Fermé
Nina
-
19 mai 2012 à 19:20
adelned Messages postés 3 Date d'inscription dimanche 20 mai 2012 Statut Membre Dernière intervention 20 mai 2012 - 20 mai 2012 à 00:52
adelned Messages postés 3 Date d'inscription dimanche 20 mai 2012 Statut Membre Dernière intervention 20 mai 2012 - 20 mai 2012 à 00:52
A voir également:
- Redirection vers une autre page php
- Supprimer une page word - Guide
- Traduire une page - Guide
- Créer une page facebook - Guide
- Windows 7 vers windows 10 - Accueil - Mise à jour
- Imprimer tableau excel sur une page - Guide
1 réponse
adelned
Messages postés
3
Date d'inscription
dimanche 20 mai 2012
Statut
Membre
Dernière intervention
20 mai 2012
2
20 mai 2012 à 00:52
20 mai 2012 à 00:52
salut
vous oublier methode="post"
<form class="form1" name="formulaire" action ="traitement.php" method="post">
<td width="117" height="42">matricule </td>
<input name="id" id="id" type="text" size="25 "/>
<select name="tra" id="tra" >
<option > Transport</option>
<option value="vol">vol</option>
<option value="train"> Train</option>
</select>
<input type="image" name="imageField" src="images/rechercher.gif" /></td>
</form>
vous oublier method="post"
<?php
$tra=$_POST['tra'];
echo " $tra " ;
if( ($tra=="vol"))
{ header('Location: vol.php');
}
else if ( ($tra=="train"))
{ header('Location: train.php');
}
?>
vous oublier methode="post"
<form class="form1" name="formulaire" action ="traitement.php" method="post">
<td width="117" height="42">matricule </td>
<input name="id" id="id" type="text" size="25 "/>
<select name="tra" id="tra" >
<option > Transport</option>
<option value="vol">vol</option>
<option value="train"> Train</option>
</select>
<input type="image" name="imageField" src="images/rechercher.gif" /></td>
</form>
vous oublier method="post"
<?php
$tra=$_POST['tra'];
echo " $tra " ;
if( ($tra=="vol"))
{ header('Location: vol.php');
}
else if ( ($tra=="train"))
{ header('Location: train.php');
}
?>