I have created a dropdown menu using basic html, with entries like:-
echo "<option value = 'sport-details.php'";
echo ">Sport</option>";
That's OK, the items in the menu link to the page indicated.
However, I am finding that the session variable is no longer present on the page linked to. In other words I have lost my session and the session variables that go with it.
This is a nice easy way to link to a page, compact on the screen and uses very little code -- bytes --. I have tried adding arguements to the line with ?myvar=<?$myvar?>, but these don't work either.
Any ideas on how to use a dropdown menu with links to another page and retain the session?
Paul