Posted by:
mmp
(---.elisa-laajakaista.fi)
On my 1st page, I have a session in place. Let's say its PHPSESSID=oednjb...
On my 1st page, I have a following form structure:
<form method='post' action='newfolder.php'>
<input type='text' name='foldername'>
<input type='submit' value='Create folder'>
<input type='hidden' name='parent' value=3>
</form>
However, when I submit the form, newfolder.php, the session does not carry over to newfolder.php even though it has session_start(); in the beginning.
I didn't see any change even when I replaced newfolder.php with full URL. So what do I have to do to get the session carry over to newfolder.php ?