Dane Posted February 9, 2008 Share Posted February 9, 2008 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.