Im trying to pass a php variable, which is created from a form, to a url/ for use on another page. I might be going about it the completely wrong way, Im not sure.
//THE FORM
<form><input style="height:35px; width:520px; font-family:Arial, Helvetica, sans-serif; font-size:24px; text-align:center;" type="text" name="fbid" /></form>
//PHP TO GET THE TEXT FROM THE TEXT INPUT BOX
<?php
$id = $_GET['fbid'];
?>
//THE IMAGE/BUTTON THAT SENDS THE USER TO THE VARIABLE URL
<img src="images/FacebookSite_32.gif" width="333" height="59" alt="" onclick="location.href='page.php?id=<?php echo $id; ?>'">
So, I'm trying to get the text that was typed in the text input box, and pass it to the URL, for use on another page. Thanks for any help!