How can I create a page of links that call other php pages?
I am currently using perl to do the following but would like to do it with PHP as perl shows the data sent to the script in the URL box which is unsecure.
I have a script that generates a list of team 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</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.
Cheers
I am currently using perl to do the following but would like to do it with PHP as perl shows the data sent to the script in the URL box which is unsecure.
I have a script that generates a list of team 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</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.
Cheers