hi i have the following form where a member chooses how long they want to be be displayed on another page like example below
<select name="hours"> <option value="1"<?php if(!empty($hours)) {?><?php if($_POST['hours']=="1") { echo "selected"; } ?><?php }?>>1</option> <option value="3"<?php if(!empty($hours)) {?><?php if($_POST['hours']=="3") { echo "selected"; } ?><?php }?>>3</option> <option value="6"<?php if(!empty($hours)) {?><?php if($_POST['hours']=="6") { echo "selected"; } ?><?php }?>>6</option> <option value="9"<?php if(!empty($hours)) {?><?php if($_POST['hours']=="9") { echo "selected"; } ?><?php }?>>9</option> <option value="12"<?php if(!empty($hours)) {?><?php if($_POST['hours']=="12") { echo "selected"; } ?><?php }?>>12</option> </select>
What would i need to put in to make sure a username disappears of the list would it be some sort of time out script
and help would be much appreciated ty jan