Here is what I'm looking at doing.
I have page with <a href="buttonLink.html">the button image</a>
Now, I want to establish a variable result when they click the button.
EG: They click the link.
If the link is clicked - then it goes to the body of a table in the webpage and sets the include result
include $content;
How do I set the href link up to send the variable result ?
I was thinking that it's got to be something like:
onclick="<?php $content="mainpagecontent.html"; ?>"
They click the button, then it sets the variable, then it loads the approriate html page into the table.
Or am I totally off on how I should do this?