Hi sorry about the noobness of this problem but i just can’t figure out this mySql.
I just installed WAMP server, and put the attached file (change extension to php) in the WWW directory of WAMP.
The default username for WAMP is “root” and password is blank.
I have a database called “files” with a table called “members” with some members inside it.
I then goto http://localhost/mySql_send.php, type in “files” for database, and in mySql field typed in:
DESCRIBE members;
… and nothing happened.
I assumed that something is suppposed to happen (due to all the ‘echos’ in php file).
I also tried:
[LEFT]
[/LEFT]
CREATE TABLE users (
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(70),
location VARCHAR(20),
date DATE NOT NULL
);
but this didn’t work either.
I’m really stuck, could someplease explain it to me. I’ve tried all the tutes here and none seem to work.
Thanks for your time,
Dr Warm