Menu
Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Development
Databases
SQL Table not showing on phpmyadmin
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="jordanm98, post: 5166914, member: 85364"] I recently created an sql table using php and when accessing phpmyadmin it said that no tables are created in my database, any help will be much appreciated. $link = connectDB ( true, false ); if ($link) { $sql = "CREATE TABLE IF NOT EXISTS muq ( muqID INT NOT NULL AUTO_INCREMENT PRIMARY KEY, dateTime DATETIME, taskTime FLOAT(4,2), useTime VARCHAR(60), usedM VARCHAR(40), freqRate VARCHAR(200), gender CHAR(1), age TINYINT UNSIGNED, email VARCHAR(100), comment VARCHAR(3000) ) "; mysqli_query( $link, $sql ); echo ($result ? 'Success' : 'Fail') . ": $sql"; mysqli_close($link); } this is the code. [/QUOTE]
Verification
Post reply
Forums
Development
Databases
SQL Table not showing on phpmyadmin
Top