|
Posted by Georg Weiler on 01/23/06 21:27
Hi,
I'm biting my nails on this for several days now, hope that someone of
you can help me...:
On my page, the user can display tables, created out of a database. So I
have several <a href> links to display the various tables. They all look
something like:
<a href=this_page.php?table=mytable1>the first table</a>
<a href=this_page.php?table=mytable2>the second table</a>
<a href=this_page.php?table=mytable3>the third table</a>
etc.
so the user clicks on a link and gets the table. now, when he goes back
to the main page, and chooses another link, he always returns to the
initial table, because the $table variable is still somehow "active"
I tried to unset the $_GET array at the start of the code of the main
page, but still it does not work. When i do a print_r($_GET) before and
after the unset, it shows me that in the $_GET array exists before the
unset, but is away after the unset, so everything should be fine.
But why does the $table variable still remain in the system?!?
Please help, I'm totally stuck!!!
thanks a lot,
georg.
Navigation:
[Reply to this message]
|