I have got a problem with regards to the session_register function.
Basically I have a problem in that PHP won't let me use SESSION_REGISTER to register the same variable (holding different values) twice. For example:
<?php
session_start ();
$var = $_GET['textfield'];
session_register['var'];
$_SESSION['var'] = $var;
?>
Basically PHP won't let the user, who already has a session set, add to that session via TEXTFIELD.
Thanks very much. Sorry if it sounds odd I am a bit drunk at the mo.