Yes, you insert it inside your form, for example something like this will work fine:Where do I insert this?
<input type="hidden" name="PHPSESSID" value="<?php echo session_id();?>" />
My best guess is in the form thing but I'm not sure.
<form action="page.php" method="post"> <p> <label for="email">Your email:</label><input id="email" name="email" /> <input type="submit" value="Submit" /><input type="hidden" name="PHPSESSID" value="<?php echo session_id();?>" style="display:none" /> </p> </form>BTW, you can put the hidden input wherever you want in your form and with the display:none style applied to it you tell the browser that you don't allocate any space to the hidden input, remove it to see the diference. Also you can replace the p tag with a div tag if you want.
Best regards,



