Hi all
Please bear with me - I'm fairly new to php coding, and can't quite find the answer I'm looking for in the forums!
I have a page that produces a list of dynamic links to other pages, e.g.
www.mysite.com/queue.php?direction=1&position=4
...... 'direction' and 'position' are passed to another function which correctly performs a mysql query using those variables e.g. "doQuery($direction, $position)"
Basically, I don't want www.mysite.com/queue.php?direction=1&position=4 to ever appear in the browser's address bar, but just have www.mysite.com/queue.php instead. Can this be achieved? (please bear in mind I have limited access to the apache server as it is being hosted by a 3rd party...)
Alternatively, does php have an "OnClick" equivalent (from what I can see, this is a java script?) so that a user can click on an icon which will then pass the variables to the function and then reload the original page without the need of any query strings....? This would be preferable and means I wouldn't have to use links to pass the variables, but functions instead.
Thanks in advance!
...Simon.