Re: [PHP] MySQL Results Not Being Commited To Database

2004-07-03 Thread John W. Holmes
Harlequin wrote: sql == "INSERT INTO RegisteredMembers (TXT_UserID,TXT_UserPassword,TXT_Comments,TXT_FurtherComments) VALUES('".$NewUserID."','".$NewUserPassword."','".$NewUserComments."','".$NewUserFurtherComments."')"; This should be $sql = " ... " and then you need to run the query w

[PHP] MySQL Results Not Being Commited To Database

2004-07-03 Thread Harlequin
I've managed with a lot of help to get the PHP pages to echo the results of what a user put into a "User Registration" page. However, I'm still having trouble getting the code right to actually commit the data on the "Registered" page that the "Register" page points to. Can anyone help...? Code a