Hi,
I have read: http://www.php.net/manual/en/function.session-register.php
Could I ask you a question about how to set a session $vars in a <FORM>? It seems to be quite a mystery/controversy!!
This is my problem: http://www.collegesherbrooke.qc.ca/languesmodernes/postcard/test_session.php
Type something. Press submit. Change your text and re-submit.
$name doesn't re-save itself. This is my code: http://www.collegesherbrooke.qc.ca/languesmodernes/postcard/test_session.phps
Would you have any suggestions? It can't be that complicated can it?
J.T-Johnston
try using a differnt variable in your form, then when you process the results set the session variable to the form variable's value.
I solved the problem using:
<pre> if (!session_is_registered("name")) { session_register("name"); } </PRE>