how do i access $_POST from another php page?

Santipheap K

New member
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;

?>

so went i try to access $email from another page it dispear??? the value of $email is empty?? Is there away were i can make it constant???
 
Back
Top