Here my code
<form action="updatelook5.php" method="post">
<input type="text" name="email" />
<input type=SUBMIT value="Update">
here the updatelook5.php page
<?php
$email=$_POST[email];
?>
so went i try to access $email from another page it dispear??? the value of $email is empty?? Is...