I know this is more of a HTML question, but meh.
For my website I am going to have a php template page, which has placeholders which information is going to be loaded into. That is all fine.
The problem is POSTing the information to the webpage. What I want to do is POST, not using a submit button, but using a normal hyperlink. The reason for this is that I am going to have a list of games, and when you click the hyperlink, it POSTs information to the php page, and the specified game is loaded. For example, if I POSTed:
Game = "Kickboxing.swf"
Author = "James Brauman"
Type = "Action"
to it the Kickboxing game would be loaded, with the author placeholder filling in with James Brauman and the Type placeholder filling in with Action.
So yeah, my question is can I have a hyperlink to POST information to a php page? If not, is there a work-around?
Thanks! 🙂