hi, well im still new to php and im wondering if there was a way to pass on info to other pages without a form? (i only know how to do it with forms) thankyou for your help!
Well, Yes.
If you need info to be accessible by all pages, you can use session variables.
Check out the docu in www.php.net on how to use sessions with PHP.
-Gio-
and in addition to that, you can hand over info by a hyperlink, e.g.:
<? $val1 = 10; $val2 = 76; $return = 3948;
echo "<a href=script.php?value1=$val1&value2=$val2&return=$return>go here</a>";
?>
matto gave a simple and easy way to do it