WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDES  |  PHP CLASSES  |  CODE SEARCH  |  ARTICLES SEARCH  |  PHP FORUMS  |  PHP MANUAL  |  PHP FUNCTIONS LIST  |  WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Submit Your Code
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
WeberDev's Monthly code contest PHP Code Contest
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
PHP Web Logs (BLogs)
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Submit Site
Forex Trading Online forex trading platform

Go Back Add a Comment Send this example to a friend Add this Article to your personal favoritest for easy future access to your favorite Code Examples and Articles. Submit a code example Print this code example.
BACK ADD A COMMENT SEND TO A FRIEND ADD TO MY FAVORITES ADD CODE EXAMPLES PRINT
Title : Using $PHP_AUTH_USER and $PHP_AUTH_PW to authenticate.
Categories : Authentication, PHP Update Picture
rasmus rasmus
Date : May 29th 1998
Grade : 2 of 5 (graded 4 times)
Viewed : 33077
File : No file for this code example.
Images : No Images for this code example.
Search : More code by rasmus rasmus
Action : Grade This Code Example
Tools : My Examples List

  Submit your own code examples 
 

You could use mod_auth_mysql. You can also use PHP directly.
The way I normally do it is to create an auth.inc file that I then
include at the top of each file that requires authentication. Because of
the way http authentication works, the user is only prompted for their
username/password combination the first time they hit one of the pages
that requires authentication and you will be able to access both their
username and password on each of these pages with $PHP_AUTH_USER and the
password is available as $PHP_AUTH_PW.

The advantage to using PHP over mod_auth_mysql is in the fact that if you
are storing other things about each user in the user record you authenticate
against then you can pull this info out in the same query as the
authentication query.

Here is a complete example of an auth.inc script that I am using on one
of my sites. I have xxx'ed out some of the stuff I don't feel like showing
everyone. You should be able to modify this for your own use:

<?
if(!isset($PHP_AUTH_USER)) {
Header("WWW-authenticate: basic realm=\"XXX\"");
Header("HTTP/1.0 401 Unauthorized");
$title="Login Instructions";
?>
<blockquote>
In order to enter this section of the web site, you must be an XXX
subscriber. If you are a subscriber and you are having trouble logging
in,
please contact <a href="mailto:support@xxx.com">support@xxx.com</a>.
</blockquote>
<?
exit;
} else {
mysql_pconnect("localhost","nobody","") or die("Unable to connect to
SQL server");
mysql_select_db("xxx") or die("Unable to select database");
$user_id=strtolower($PHP_AUTH_USER);
$password=$PHP_AUTH_PW;
$query = mysql_query("select * from users where user_id='$user_id' and
password='$password'");
if(!mysql_num_rows($query)) {
Header("WWW-authenticate: basic realm=\"XXX\"");
Header("HTTP/1.0 401 Unauthorized");
$title="Login Instructions";
?>
<blockquote>
In order to enter this section of the web site, you must be an XXX
subscriber. If you are a subscriber and you are having trouble
logging in,
please contact <a href="mailto:support@xxx.com">support@xxx.com</a>.
</blockquote>
<?
exit;
}
/* Here I pick out some other useful info from my database that
then available to any script that includes this file */
$name=mysql_result($query,0,"name");
$email=mysql_result($query,0,"email");
mysql_free_result($query);
}
?>



Function to remember password
Categories : PHP, Authentication, Personalization and Membership
PHP4 MYSQL Authentication Script with cookie. Short & Sweet
Categories : Authentication, Apache, Cookies, PHP, MySQL
Authorize Me! An authentication script.
Categories : MySQL, Databases, Authentication, PHP
Authentication script to authenticate users in Active Directory through LDAP.
Categories : LDAP, Authentication, Cookies, PHP
MD5 secured login
Categories : PHP, Java Script, Authentication, Security
Import the yahoo address book.
Categories : PHP, CURL, Authentication
Simple and fast user authentication
Categories : PHP, PHP Classes, Authentication
Is there some possibility to link a database to an htaccess file, so that instead of having a passwd file you would have a database with DES-crypted password and username fields?
Categories : Authentication, PHP, General SQL, Databases
Authentication HTTP protocol POST
Categories : Authentication, HTTP, PHP
Full membership authentication system.
Categories : Authentication, MySQL, PHP, Databases
A simple PHP login script that you can modify to suite your needs. It use a session to store data in a session file submited by the page.
Categories : PHP, Sessions, Security, Authentication
Implementing a "Members ONLY" area
Categories : PHP, MySQL, Databases, Authentication
AUTH (.htaccess style) - a login system that uses PostgreSQL.
Categories : PHP, Authentication, Databases, PostgreSQL
Form Security - Match A Value For Success
Categories : PHP, Authentication, HTML and PHP, Sessions, Security
complete, simple, working example of a login screen/system using php functions, cookies, and a mysql database for begginers.
Categories : Authentication, Complete Programs, PHP, MySQL, Databases
 Ron Valli wrote : 60
Thank you for this article. It was very useful in getting WWW-authenticate working on my site.  Is there a 
way to change the field text on the window that pops up.  I want to change the text "User Name" to 
"Member ID".  Also, is there a way that I can pre-load the "User Name" field with data. Let`s say the member 
ID for example. My users are getting confused when Windows pre-load their name in User Name field. 
Thanks, Ron
 
 David Koopman wrote : 64
I would like to find out how to reset the 
$PHP_AUTH_PW to NULL or set it to nothing.  This 
would be very handy for allowing authenticated guests 
to "logout."    I can set $PHP_AUTH_PW = "" but this 
doesn`t do the trick.  I need to tell the client`s browser 
to "forget" his/her password.  Is this possible?  I can 
reset a cookie password with SetCookie
("password","").  Can I send a cookie named 
PHP_AUTH_PW?  I will try it, but I doubt it will work.  
Send help via e-mail if you know the answer.
 
 Jason Lambertson wrote : 89
The code is good, but I need a way that
effectively logs a user out (resets PHP_AUTH_USER
and PHP_AUTH_PW) when they click a Logout button.
Any suggestions?
 
 Boaz Yahav wrote : 90
Why not keep track of users in a session table or better 
yet, use the real thing with PHP4? This way, the 
authentication is not enough and you can also set a 
timeout and even expire a user when you wish.
 
 Ronnie Schwartz wrote : 116
I would recommend, from personal experience, that you rename 
all "auth.inc" files to "auth.php3"  That way if a person 
goes directly to the file he won`t get your actual code.
 
 Boaz Yahav wrote : 117
Simply add the folowing line in your .htaccess :

AddType application/x-httpd-php php3 inc html

now php will run files with php3 extention and inc and 
html and you can add as many extentions as you like....

berber
 
 Darren Moore wrote : 120
I dont get this, so if i set $PHP_AUTH_USER and 
$PHP_AUTH_PW in a script it will store it and let me log 
on with out the popup screen? It does not seem to 
work, I got a file in /php/ which sets the variables and 
the access is to /php/admin/ but it does not seem to 
work, it just asks for the password again
 
 Shlomo Zippel wrote : 206
I copied this from the php manual:

Both Netscape and Internet Explorer will clear the local 
browser window`s authentication cache for the realm 
upon receiving a server response of 401. This can 
effectively "log out" a user, forcing them to re-enter 
their username and password. Some people use this 
to "time out" logins, or provide a "log-out" button.
This behavior is not required by the HTTP Basic 
authentication standard, so you should never depend 
on this. Testing with Lynx has shown that Lynx does 
not clear the authentication credentials with a 401 
server response, so pressing back and then forward 
again will open the resource (as long as the credential 
requirements haven`t changed).


Btw - Can i use a form with PHP_AUTH_USER and 
PHP_AUTH_PW as text/password fields instead of the 
popup?

 
 chiedu okpala wrote : 284
This was a wonderful example but i have a problem just 
like many people here on setting the variables 
$PHP_AUTH_USER and $PHP_AUTH_PW  to nothing. So 
when a call to the isset function is called it would 
readsfalse.
 
 
 mike yankovski wrote : 457
Yeah, like many others, i`m trying to find out how to set PHP_AUTH_USER and PHP_AUTH_PW to something manually, inside the script.  And also, i know there`s another variable PHP_AUTH_TYPE or something like that, what is it for ? Please reply via email if possible
Thanks alot
 
 day walkery wrote :774
Why let php4 parse the .inc files?

They are included!!!

Why rename them to .php(3)?

To SECURE .inc files add this to your apache.conf (httpd.conf)

&lt;Files "global.inc"&gt;
    Order allow,deny
    Deny from all
&lt;/Files&gt;

(i always call my files global.inc global def`s etc etc)

Now NOBODY will be able to read them, open them, etc etc. They can only be used included in php files.

Letting the php engine parse them DOES NOT SECURE THEM@!