Search found 4 matches
- Tue Aug 26, 2003 6:49 pm
- Forum: Databases
- Topic: db.php problem, please help ^-^
- Replies: 6
- Views: 1161
- 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 *...
- 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
I haven't typed that in my db.php, yet it always come on.
http://www.abna.ca/VC/Login/login_form.html
- 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 ...