I have a problem with session handling
I have a form from like this
<form action="save.php">
<input type="text" name="name">
<input type="text" name="address">
<input type="text" name="phoneNo">
<input type="submit" >
</form>
and in save.php
I am using code like
<?PHP
session_start();
if(session_is_reqistered(name))
session_unregister(name)
if(session_is_reqistered(address))
session_unregister(address)
if(session_is_reqistered(phoneNo))
session_unregister(phoneNo)
session_register(name,address,phoneNo);
?>
The problem is that when user fill the form second time then this code does not updates the variables with new values,
Any suggestion how to over write the old values with new one.
Thank you very much in advance
[/b]

