hey,how can i direct users to their specific pages on login?and to make users only view their entries and not anyone else's. below is my html code which is loggin in but to a common page.
Code:
<html> <head> <meta id="_moz_html_fragment"> </head> <body style="background-image:url(ocean5.jpeg)"> <div style="text-align: center;"><br> <br> <br> <br> <big><big>LETTER HEAD SYSTEM<br> <br> <br> </big></big> <form method="post" action="login.php"> <center> <table width="30%"> <tbody> <tr> <td style="text-align: left;">USERNAME<br> </td> <td><input name="username" type="text"><br> </td> </tr> <tr> <td style="text-align: left;">PASSWORD<br> </td> <td><input name="password" type="password"><br> </td> </tr> </tbody> </table> <br> <br> <form method="post" action="view.php"> <input value="LOGIN" name="submit" type="submit"><br> </form> </center> </form> <big><big><br> </big></big></div> </body> </html>
Comment