Next value
- From: "zek2005" <esapoznik@xxxxxxxxx>
- Date: 30 Jan 2006 17:52:16 -0800
Hi!!!
I've made a form with a 'select' statement through a
echo('<select name="res">');
echo('<option selected value=""> Select option</option>");');
while($row = mysql_fetch_array($resumen))
{
echo('<option value="' .$row[id]. '">'
..strtoupper($row[titulo_esp]). '</option>');
}
echo('</select>');
The user selects an option and a text is displayed. Now, I want to
insert a "previous" and a "next" button so the user can navigate from
here without selecting any other value from the "select" form.
Example: The posible 'id' values are: 1,4,5,7,8,9. The user chooses 5,
so if he press the "next" button he will navigate to the page with the
id#7 and if the user selects "previous" he will go to the id#4.
I tried to use the funtion next(), but I don't know how to do it.
Can anyone help me with this problem?
Thanks in advance!
Ezequiel
.
- Follow-Ups:
- Re: Next value
- From: Carl Vondrick
- Re: Next value
- Prev by Date: PHP + email
- Next by Date: Re: Washington DC Job Opportunity
- Previous by thread: PHP + email
- Next by thread: Re: Next value
- Index(es):