Oliverkahn Posted May 3, 2014 Share Posted May 3, 2014 i created a file called "general.sql" with the below code and uploaded it to the server....but when i checked the phpmyadmin its still tells me no table created -- phpMyAdmin SQL Dump -- version 3.5.1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Aug 27, 2012 at 06:25 PM -- Server version: 5.5.24-log -- PHP Version: 5.4.3 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- Table structure for table `b_users` -- CREATE TABLE IF NOT EXISTS `users` ( `userID` bigint(21) NOT NULL AUTO_INCREMENT, `username` varchar(60) NOT NULL DEFAULT '', `password` varchar(255) NOT NULL DEFAULT '', `files` varchar(100) , 'wish' varchar(100) , `email` varchar(255) NOT NULL DEFAULT '', `sex` char(7) NOT NULL, 'date' varch(20), 'ban' bigint(21), 'level' bigint(21), PRIMARY KEY ('userID') ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; ---table structure for files-- CREATE TABLE IF NOT EXIST 'files' ( 'fileID' bigint(21) NOT_NULL AUTO_INCREMENT, 'file_name' varchar(50) NOT_NULL, 'description' varchar(200) NOT_NULL, 'comment' varchar(200), 'date' varchar(20) PRIMARY_KEY('fileID') ) ENGINE= MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMEN=1; what do i do pls Quote Link to comment Share on other sites More sharing options...
Ch0cu3r Posted May 3, 2014 Share Posted May 3, 2014 What do you mean? That SQL script should create two tables, called users and files For the script to create the tables you need to first make sure you are logged in to phpMyAdmin, then select your database where you want the tables to be created and then click on the Import tab. Browse to the .sql file in your computer and then click the Go button. The two tables should now be created in your database. Quote Link to comment Share on other sites More sharing options...
Solution Oliverkahn Posted May 3, 2014 Author Solution Share Posted May 3, 2014 thanks bro Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.