basic www auth

2002-10-16 Thread Cristóvão Dalla Costa
Hi I'd like to do basic www authentication on my scripts. Apache::Auth::DBI isn't good since it would waste a database connection, and just add unnecessary complication. I'd like to do something like: if (! check ($username, $password)) { send_unauthorized_http_headers (); } I guess

Re: basic www auth

2002-10-16 Thread Geoffrey Young
Cristóvão Dalla Costa wrote: Hi I'd like to do basic www authentication on my scripts. Apache::Auth::DBI isn't good since it would waste a database connection, and just add unnecessary complication. I'd like to do something like: if (! check ($username, $password)) {