------------------------------------------------------------------------------------
--- Page1.php ---
here's a input box called "name"
------------------------------------------------------------------------------------
--- Page2.php ---
here's the result from "name" printed with the following string:
Code: Select all
<?php
print ("$name<BR>\n");
?>--- Page3.php ---
this page is supposed to take care of sending out an email with the value of "$name" but here it seems that the value has been lost cos i'm receiving a blank email!!
===============================================
Now i am wondering, what will be the best to do here, since i need more values to pass when i finaly get this to work... will an Array stay 'alive' over multiple pages or is there any other way? If anyone could give me some understandable directions for this newbie that would be great! Thanks!