|
Posted by Captain Paralytic on 11/27/07 14:47
On 27 Nov, 14:37, Mike <ampel...@gmail.com> wrote:
> Hello,
> I have a Login page that checks a Db for a Un and Pw using ajax.
> If the Login is incorrect, they just get a embedded message.
> If it is correct, I want to redirect COMPLETLY.
> Whats happening is the new page is being embedded into the login page,
> and I dont want that.
> ............................
> if ($rowcount==0){
> echo "<p>Wrong Username or Password Dufus</p>";}
>
> else
> {//echo "<p>Your logged in $result_1[U]</p>";
> $_SESSION['U'] = $result_1[U];
> $_SESSION['P'] = $result_1[P];
> header( 'Location: Main_Mockup.php' );}
>
> ...............................
>
> Any suggestions for this
> Thanks
> Mike
I think that "Your logged in" should possibly be "You're logged in".
Now for your initial question, it depends on what you are doing on the
client with this returned data. Are you in a frame? Maybe you could
use the href object?
[Back to original message]
|