Search results

  1. S

    how do i access $_POST from another php page?

    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...
  2. S

    how do you make php variables have the same value for every page?

    For example your php variable $v=10; how make another page ,,, like page2.php have the same value without using submit bottom ???
  3. S

    How do you make php submit variables have the same value for every page?

    <form action="login.php" method="post"> <table width="443" border="1"> <tr> <td><p align="left" class="style1"><tt>Current user email: <input type="email" name="email" /> <input type=SUBMIT value="Login"> </tt></p> </td> </tr> </table> </form> and for login.php page <?php...
Back
Top