Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Urgent please

Status
Not open for further replies.

mnassih

IS-IT--Management
Jun 29, 2005
64
0
0
SE
I execute the code :
---
<?php

$datedebut = $_POST["datedebut"];
$datefin = $_POST["datefin"];

?>

<form action="demapprobconge.php?datedebut=<?php echo $datedebut;?>&datefin=<?php echo $fin;?>" method="POST">

<center>
<table>

<tr>
<td>
De :
</td>
<td>
<input type="text" name="datedebut" size="10">
</td>
</tr>

<tr>
<td>
A :
</td>
<td>
<input type="text" name="datefin" size="10">
</td>
</tr>
<tr>
<td>
<input type="reset" value="Annuler" />
</td>

<td>
<input type="submit" value="Demander Approbation" />
</td>

</td>
</tr>

</table>
</center>
</form>
----

when I enter the dates and I submit, I got :

in the adress, the datedebut and datefin are empty ???

please help.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top