Hello everybody,
I wanna ask about how to keep a choice after the page loads
CODE
<head>
<meta http-equiv="refresh" content=";">
</head>
<body>
<font size="1"><b>Load Page</b></font><br>
<form id="formmaz" name="formmaz" method="post">
<select name="selectmaz" onchange="formmaz.submit()">
<option value=" ">No Loading</option>
<option value="60">1 minute</option>
<option value="300">5 minutes</option>
<option value="600">10 minutes</option>
<option value="900">15 minutes</option>
</select>
<input type="hidden" name="MM_insertmaz" value="formmaz">
</form>
To clarify my demande, lets say i want the page to load every 5 minutes, and i get in the form
No Loading, and i choose from the form
5 minutes. The problem is that as soon as the page reloads the form regets
No Loading as a message appearing, which means the page wont load anymore, while I want to keep my choice, so that it keeps loading every 5 minutes.
Is there anything to add to my code so that it saves and keeps my choice after loading the page??
I wish my demande is clear
waiting for your answer.
Thanks in advance
This post has been edited by arrifinu: 17 Mar, 2008 - 05:00 AM