Hello, I am trying to pass an object to another page. I have the class headers required on both pages, and read in the class like so in a form:
<?
print("");
require("classes.php");
$orderinfo = new order;
print("<form action=\"test.php\" method=GET><input type=\"text\" name=\"$orderinfo->sig\" size=\"5\"><br>
<input type=\"submit\" name=\"Submit\" value=\"Submit\">");
print("</form>");
?>
The second page consists of :
<?
require("classes.php");
print($orderinfo->sig);
?>
This does not work, Any ideas would be helpfull.
Thanks in advance
Matt