Recent content by Santipheap K

  1. S

    Do you still have an old fashioned photo album?

    I found out that the old fashion can become new fashion
  2. S

    create a if statement to know what page you on in php?

    for example if you on page how.com/index.php then you go to how.com/index2.php how to create a if statement to know you on page index.php???
  3. 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...
  4. 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 ???
  5. 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