How can I create a page of links that call other php pages without the use of cookies and without the variables being passed in the URL box?
I can do this in perl but it shows the vars which I don't want as visitors can edit the
URL box and see things they shouldn't.
I have a script that generates a list of baseball players on a page, each players name is a link that passes their player number and name to the main database script, an example:
<A HREF="htttp://mydomain.com/cgi-bin/maindata.pl?player_no=$player_no&name=$player_name=DiMagio>DiMagio Stats</A>
The links pass the player number and name to the maindata.pl script.
I'd like to do this in PHP, but as I say the main provision is that nothing must be visible in the URL box as anyone could edit the box to look at other player details and I don't want to use cookies.
Cheers