Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 03-02-2009, 11:09 PM   PM User | #1
Surreal09
New to the CF scene

 
Join Date: Mar 2009
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Surreal09 is an unknown quantity at this point
Login Sytem(phpBB)

Ok im not sure if this is the right forum, but please move it if it isn't Thanks.

My problem is im wanting to put the phpBB login system on my site, i have it working so far so that when you put your username and password in, you are logged in to the forums.

However, if i go back to my home page, it still shows the login box as empty, and i would like it to say "You are logged in as 'USERNAME' or what ever, and when you are logged out as ' Welcome Anonymous'.

The code i have for that is:

Code:
<form method="post" action="http://www.surrealbb.co.uk/forums/ucp.php?mode=login">
<p><input name="username" type="text" id="username" /></p>
<p><input name="password" type="password" id="password" /></p>
<p><input name="redirect" value="index.php" type="hidden">
<input name="login_submit" class="mainoption" value="Log in" type="submit"></p>
<input type="hidden" name="sid" value="<?= $user->data["session_id"] ?>" />
<input type="hidden" name="login" value="login" />
</form>
That works great and it shows the login box. I tired putting:

PHP Code:
<?php
if ($user->data['user_id'] == ANONYMOUS)
{
   echo 
'Please login!';
}

else
{
   echo 
'Thanks for logging in, ' $user->data['username_clean'];
}
?>
around the form but it still didn't do the work.

Does anyone have the code for me as i would like to get this sorted. Also, if you could put the code to put Register, Lost Password etc underneath.

Thanks in advance. If you do not support this, can you send me in the right way, thanks.
Surreal09 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 05:21 AM.


Advertisement
Log in to turn off these ads.