Forum Moderators: coopster
This php page will be accessed on mobile phones, and Javascript support on them is very limited, so I must deal with it using only PHP.
Thanks in advance!
Something like this:
<a href="page.php?link=test">Link</a>
Then on ipage.php, you have this:
<input type="hidden" value="<?php echo $_GET['link'];?>" />
That is if I'm understanding you correctly :)