Search found 4 matches

by Hoshi
Tue Aug 26, 2003 6:49 pm
Forum: Databases
Topic: db.php problem, please help ^-^
Replies: 6
Views: 1161

I think that if a person that register on the website, the file automatic adds the user on to my database, so I don't have to add users manually, right? I was wondering if you could tell me what i should be checking here. // check if the user info validates the db $sql = mysql_query("SELECT * F...
by Hoshi
Sun Aug 24, 2003 9:22 pm
Forum: Databases
Topic: db.php problem, please help ^-^
Replies: 6
Views: 1161

First, use the mysql program to connect to the server as the MySQL root user: shell> mysql --user=root mysql Then you can add new users by issuing GRANT statements: mysql> GRANT ALL PRIVILEGES ON *.* TO monty@localhost -> IDENTIFIED BY 'some_pass' WITH GRANT OPTION; mysql> GRANT ALL PRIVILEGES ON *...
by Hoshi
Sun Aug 24, 2003 8:43 pm
Forum: Databases
Topic: db.php problem, please help ^-^
Replies: 6
Views: 1161

^-^

That might be it, but can you tell me why does "@ensim.com" always comes up, when I try to login in?

I haven't typed that in my db.php, yet it always come on.

http://www.abna.ca/VC/Login/login_form.html
by Hoshi
Sun Aug 24, 2003 1:17 am
Forum: Databases
Topic: db.php problem, please help ^-^
Replies: 6
Views: 1161

db.php problem, please help ^-^

This is my db.php, I'm not sure if all the things are rite, please correct me, if I'm wrong. <? /* Database Information - Required!! */ /* -- Configure the Variables Below --*/ $dbhost = '69.57.142.60'; $dbusername = 'abna@abna.ca'; $dbpasswd = '***********'; $database_name = 'abna_ca'; /* Database ...