Okay I have decided to start learning php the only problem is I have nobody to help me with my scripts so i figure why not ask you guys.
I have this for a login script and the one below it as the interpretor. It doesn't work any advice would be great.
(right now all it does is you type your login information in and its supposed to read it back to me when i hit login.)
Login Area:
Code:
<form action="membersarea.php" method="post">
<p>Your Login ID: <input type="text" name="LoginID" ="LoginID" /></p>
<p>Your Password: <input type="password" name="Password" id="Password" /></p>
<p><input type="submit" name="submit" value="Login" /></p>
</form>
<font size="2">Forgot your Password? or<br>Register for FREE!!!</font>
Members Area:
Code:
Login ID is <?php echo htmlspecialchars($_POST['LoginID']); ?> <br>
Password is <?php echo (int)$_POST['Password']; ?>
Deffinatly in progress. But its a start for a newbie.