RE: [PHP] Frustrating problem with log-in script - DOHHH - Solved

2003-07-07 Thread George Pitcher
Sorry guys, I wasted your time if you looked at this. The local.php as copied from my local machine and had 'localhost' as the base url rather than the proper web address. Meet Dumbererer! George -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/uns

[PHP] Frustrating problem with log-in script

2003-07-07 Thread George Pitcher
Hi, I' running a self-registration script. On the login page are 2 fields: 'username' and 'paswd'. The contents are checked against a db. New users must enter 'new' and 'user' into these fields and that will skip the db check and dump them into a registration page. On testing (after it worked f

RE: [PHP] frustrating problem

2003-01-06 Thread Larry Brown
y S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Matthew K. Gold [mailto:[EMAIL PROTECTED]] Sent: Monday, January 06, 2003 4:26 PM To: [EMAIL PROTECTED] Subject: [PHP] frustrating problem I hope that I can explain this problem in a logical and clear way

Re: [PHP] frustrating problem

2003-01-06 Thread Chris Shiflett
--- "Matthew K. Gold" <[EMAIL PROTECTED]> wrote: > SELECT FooLName, FooPhone, FooEmail > FROM foo, foocontact > WHERE foocontact.FooID=$FooID and foo.FooID=$FooID; You might try this instead: select foolname, foophone, fooemail from foo, foocontact where foo.fooid='$fooid' and foo.fooid=foocon

[PHP] frustrating problem

2003-01-06 Thread Matthew K. Gold
I hope that I can explain this problem in a logical and clear way. In MySQL, I have two tables for information:: foo, which contains FooID, FooLName, FooFName and foocontact, which contains FooID, FooContactID, FooEmail, FooPhone, FooAddress1, etc. Honestly, I can't remember why I split up the