Can you explain more about session?
Here is what I want to do..
I want to pass different values to different steps in one script..
This is a example of what I am talking about.
<form method="POST" action=http://www.traffic-exchange.com/test.php>
<input type=hidden name=page1>
<input type=hidden name=testing1>
<input type=submit value=page1>
</form>
once clicked the page will show the hidden
files.. this is just a example.. I want to
pass other information including user and
pass..
These examples do not work they are just examples I want to know how to do them in session..
<form method="POST" action=http://www.traffic-exchange.com/test.php>
<input type=hidden name=page2>
<input type=hidden name=testing2>
<input type=submit value=page2>
</form>
<form method="POST" action=http://www.traffic-exchange.com/test.php>
<input type=hidden name=page3>
<input type=hidden name=testing3>
<input type=submit value=page3>
</form>
I would like any help I could get on this..