PDA

View Full Version : Form



Yonder
17-06-2009, 07:17 PM
I have a login page and im trying to put a login form on the index page. It was working i dont know what happened.

Any ideas much appreciated:

Index.php
http://pastebin.com/m83a22d4

Snipped of login box on index.php

<form action="login.php" method="post">
<table width="217" height="205" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td class="ttl"><b>Login Here!</b></td>
</tr>
<tr>
<td style="padding-bottom: 10px;"><br>
Username:<br>
<input name="username2" size="25" maxlength="20" class="login1" type="text"></td>
</tr>
<tr>
<td style="padding-bottom: 10px;">Password:<br>
<input name="password2" size="25" maxlength="20" class="login1" type="password"></td>
</tr>
<tr>
<td><input name="login2" class="login2" value="Login" type="submit"></td>
</tr>
<tr>
<td><a href="lostpass.php">Forgot Password?</a> | <a href="signup.php">Sign Up!</a></td>
</tr>
</table>

</form>


Login.php

http://pastebin.com/m75d6fd96

Jam-ez
17-06-2009, 07:22 PM
What exactly doesn't work? :)

Yonder
17-06-2009, 07:45 PM
The login works fine on login.php

But i try to login from index.php an doesnt work forwards me to login.php where i have to enter my login info again then it works.

Im trying to make it so i login straight from index.php

Johno
17-06-2009, 09:18 PM
Im guessing there is a reason for this, but why don't you just paste the code from login.php into where you want the form to appear on index.php?

Sam
17-06-2009, 09:23 PM
Or just include the login.php file on the index.php?



<?php
include ( 'login.php' );
?>


Place that wherever you want the login to appear?

Joshh
17-06-2009, 09:35 PM
If the file is called index.php, you must change the red bit


<form action="login.php" method="post"> to index.php

VirtualG
17-06-2009, 09:57 PM
Are you using an iframe to the login page (sorry if any of this sounds stupid, havent had enough time to check the whole coding job) ? You could try that if your not, could work. +rep also to anyone who can fix it.

Yonder
17-06-2009, 10:12 PM
Nevermind fixed it Lol silyl me do you not jsut hate things when they are right in your face.

Just so anyone who wonders or whatever, i had the input boxes different on the index and login pages.

Want to hide these adverts? Register an account for free!