Submit Your Article Webforumz RegistrationAnnouncements Contact Webforumz StaffContact
Home Resources Blogs Meet the Team Contact Register
 

Go Back   WebForumz.com > The Code > PHP

Reply
 
LinkBack Thread Tools
Old July 20th, 2006, 12:18 AM   #1
Reputable Member
 

Join Date: Jul 2006
Location: Gillingham
Age: 22
Posts: 465
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 Aaron1988 is on a distinguished road
Smile Simple PHP login script help

hi i not any good at php i just want a simple login script so people have to register before they can go on certain things please can some1 help and i looed at the one on phpfreaks that sypher put up and it not what i need so please help me thankyou

Aaron
Aaron1988 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old July 22nd, 2006, 05:00 PM   #2
Most Reputable Member
 

Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,307
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 ukgeoff has a spectacular aura about ukgeoff has a spectacular aura about
Re: Simple PHP login script help

Are these logins going to be validated against the content of a database?

Are the people logging in going to be able to change their login id and password?

Do you want to protect access to various individual pages or to an area of the site such as a 'members only' bit?

You need to answer these sorts of questions and, from what you say, the solution is likely to be a little more complex than your apparent understanding.

This is not a good idea. Understand what's going on then you can properly control it.
ukgeoff is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old August 18th, 2006, 07:56 AM   #3
Reputable Member
 

Join Date: Jul 2006
Location: Gillingham
Age: 22
Posts: 465
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 Aaron1988 is on a distinguished road
Re: Simple PHP login script help

hey ok well i would need help to do this because i not very gd wid php so it will be hard i not asking for u to do it because i got no money but if u could help me then i be happy

Aaron
Aaron1988 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old August 22nd, 2006, 09:45 PM   #4
WebForumz Member
 

Join Date: Jun 2006
Location: Rochester, NY
Posts: 66
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 Compumaniac12 is on a distinguished road
Re: Simple PHP login script help

you may be outta luck there bud, if your looking for a CMS, try E107.
If your looking for a plain and simple login form heres your code.

$result = mysql_query("SELECT * FROM `` WHERE `user`='$user'") or die(mysql_error());
if (mysql_num_rows($result) > 0) {
while($r=mysql_fetch_array($result)){
$user=$r["user"];
$password=$r["password"];
$passwordd= md5($pass);
if ($password==$passwordd){
Echo"Welcome $user";
} else {
Echo"Incorrect Password";
}
}
} else {
echo "Incorrect Username";
}


If that doesnt help, you may need to hire someone...
__________________
www.MonsterCoding.com - Website Programming and Development Services
Compumaniac12 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old August 22nd, 2006, 11:06 PM   #5
Elite Veteran
 

Join Date: Dec 2005
Location: On Internet
Posts: 4,850
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 JacobHaug is a jewel in the rough JacobHaug is a jewel in the rough JacobHaug is a jewel in the rough JacobHaug is a jewel in the rough
Cool Re: Simple PHP login script help

Let me know wither this is the type of thing you are looking for.

http://www.ldstroop21.org/cgi-bin/Sign In/Main Frame/Main Frame.html

If this is what you are looking for I will help you build it. It is not at all that complex. Just reply to the forum if this will work for you. If not then I need more detail about what you are asking for. Good Luck.
JacobHaug is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old August 23rd, 2006, 04:58 PM   #6
Highly Reputable Member
 

Join Date: Jul 2006
Location: Devon, England
Posts: 564
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 AdRock will become famous soon enough
Re: Simple PHP login script help

I have a login script you could have if you wanted it. I got it from php freaks and another site and merged the 2 to make my own. The user when registers has to validate their email address before completing registration

I also got a captcha image in there so they have to enter a random code to register. Let me know if you want it and I'll send it to you
AdRock is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old August 23rd, 2006, 07:13 PM   #7
Reputable Member
 

Join Date: Jul 2006
Location: Gillingham
Age: 22
Posts: 465
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 Aaron1988 is on a distinguished road
Re: Simple PHP login script help

hey jacob yes that is what i am looking for me
Aaron1988 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old August 23rd, 2006, 07:38 PM   #8
Elite Veteran
 

Join Date: Dec 2005
Location: On Internet
Posts: 4,850
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Altering Power: 0 JacobHaug is a jewel in the rough JacobHaug is a jewel in the rough JacobHaug is a jewel in the rough JacobHaug is a jewel in the rough
Re: Simple PHP login script help

OK cool PM me and i will send you the files. Oh and make sure you have Macromedia Flash.
JacobHaug is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Bookmarks

Tags
simple , php , login , script , help


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
login script mbarr Databases 13 March 12th, 2008 12:39 AM
Link to Simple Secure Login/Logout tutorial Lchad PHP 16 October 24th, 2007 07:53 PM
login script help Aaron1988 PHP 2 October 25th, 2006 11:03 AM
Login Script... something wrong! snowangel PHP 6 March 6th, 2006 11:27 AM
client login script? godonlyknows PHP 6 July 23rd, 2005 01:47 PM


Search Engine Optimization by vBSEO 3.2.0 RC8