RE: [PHP] members page

2001-03-06 Thread Scott Brown
If you're authenticating via .htaccess you can use the environment variable "REMOTE_USER" to use as the username to do the select on the db. Something like: $user = getenv("REMOTE_USER"); $sql = "Select * from usertable where username = '$user'"; I'm (currently) using PHP3.0.15 and

Re: [PHP] members page

2001-02-19 Thread Thomas Deliduka
On 2/20/01 1:11 AM this was written: im making a webdesign website that has a members login, do i have to make a member page for each member or can i get the info from the database of the person whom logged in and put it on the members page If you create a table in a database that holds the

[PHP] members page

2001-02-19 Thread Brandon Feldhahn
im making a webdesign website that has a members login, do i have to make a member page for each member or can i get the info from the database of the person whom logged in and put it on the members page -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL