Hi!
I'm trying to send off a selection from a drop down list of countries to another page using php. I know there is use of sessions but would not like to use it.
This is the value from the drop down box that needs to be send to the oher page.
<select id=CountriesID style="WIDTH: 220px" name=CountriesID>
<option selected>- Select a Country -</option>
<option value=1>Afghanistan</option>
<option value=2>Albania</option>
<option value=3>Algeria</option>
<option value=5>Andorra</option>
.
.
.
.
</select>
on the other page I have the same select id but I'm trying to fit in the value that was chosen in the previous page...I've tried with an 'echo' command and I don't seem to be able to make it work. I would great appreciate your help on this matter.