Jump to content

[SOLVED] Using POST


Dane

Recommended Posts

Hey guys.

 

I have this peice of code

 

<select class="forminput" name="result_day"><?php for ($i=1; $i<=31; $i++) { if($i<10) { $val="0$i"; } else { $val=$i; } echo "<option value=\"$val\""; if ($val==$sel_day) echo " selected"; echo ">$val</option>"; } ?></select>

 

But when its submitted and there is an error in my code, the value that was selected doesnt stay the same, its goes back to the current day of the month. Any ideas how i can change this?

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/90192-solved-using-post/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.