Zoey Posted October 24, 2006 Share Posted October 24, 2006 Alright, I must have read through the syntax for creating a table in mysql a thousand and one times, but I cannot figure out what is wrong with my code. I'm hoping another pair of eyes can help me.[quote]$database=mysql_connect("localhost","username","password");$result=mysql_query("CREATE TABLE `poll` ( `id` int(11) NOT NULL auto_increment, `name` varchar(50) default NULL, `question` varchar(255) default NULL, `bgcolor` varchar(20) default NULL, `fontsize` varchar(10) default NULL, `font` varchar(50) default NULL, `fontcolor` varchar(20) default NULL, `orientation` varchar(100) default NULL, `tbgcolor` varchar(20) default NULL, `tfontsize` varchar(10) default NULL, `tfontcolor` varchar(20) default NULL, `tfont` varchar(50) default NULL, `votes` int(11) default '0')"); if ($result) {echo "Table Created!";}else print "Error";[/quote]No matter what I do, I keep getting "Error". And I know the table hasn't already been created because when I plug it into this code:[quote]$result = mysql_query("DESCRIBE poll"); while ($row = mysql_fetch_array($result, MYSQL_NUM)) { printf("%s %s", $row[0], $row[1]); echo"<br>"; } mysql_free_result($result);[/quote]I get a blank page, even though when I test it on a table that I know already exsists, it gives me the feedback I'm looking for (the names of all the columns in the specified table).Can someone please help?(And unfortunatly, no, I don't have access to my server itself, so I do need to create the tables in PHP) Link to comment https://forums.phpfreaks.com/topic/24987-creating-mysql-tables-with-php/ Share on other sites More sharing options...
marcus Posted October 24, 2006 Share Posted October 24, 2006 [code]if ($result) {echo "Table Created!";}else print "Error";[/code]change to[code]if ($result) {echo "Table Created!";}else{ print "Error";};[/code] Link to comment https://forums.phpfreaks.com/topic/24987-creating-mysql-tables-with-php/#findComment-113866 Share on other sites More sharing options...
Zoey Posted October 24, 2006 Author Share Posted October 24, 2006 Nope, still getting Error. Link to comment https://forums.phpfreaks.com/topic/24987-creating-mysql-tables-with-php/#findComment-113868 Share on other sites More sharing options...
gmwebs Posted October 24, 2006 Share Posted October 24, 2006 Have you checked that your SQL syntax is correct? Try executing the query in PHPMyAdmin and see if it creates the table. At this stage, don't know what is generating the error you speak of - PHP or MySQL.Also, try adding the following...[code]<?php$result=mysql_query("CREATE TABLE `poll` ( `id` int(11) NOT NULL auto_increment, `name` varchar(50) default NULL, `question` varchar(255) default NULL, `bgcolor` varchar(20) default NULL, `fontsize` varchar(10) default NULL, `font` varchar(50) default NULL, `fontcolor` varchar(20) default NULL, `orientation` varchar(100) default NULL, `tbgcolor` varchar(20) default NULL, `tfontsize` varchar(10) default NULL, `tfontcolor` varchar(20) default NULL, `tfont` varchar(50) default NULL, `votes` int(11) default '0')") OR DIE (mysql_error()); //This will print out the MySQL error?>[/code] Link to comment https://forums.phpfreaks.com/topic/24987-creating-mysql-tables-with-php/#findComment-113886 Share on other sites More sharing options...
Zoey Posted October 24, 2006 Author Share Posted October 24, 2006 No database selectedWhy would it be giving me that? I'm only connecting to the one database, and the username and password and all that are correct.. copied and pasted from another page that works. Link to comment https://forums.phpfreaks.com/topic/24987-creating-mysql-tables-with-php/#findComment-113889 Share on other sites More sharing options...
gmwebs Posted October 24, 2006 Share Posted October 24, 2006 Ok, try this...[code]<?php$connection = mysql_connect("servername.somedomain.com", "dbUsername", "dbPassword");mysql_select_db("dbName", $connection);$sql = "CREATE TABLE `poll` ( `id` int(11) NOT NULL auto_increment, `name` varchar(50) default NULL, `question` varchar(255) default NULL, `bgcolor` varchar(20) default NULL, `fontsize` varchar(10) default NULL, `font` varchar(50) default NULL, `fontcolor` varchar(20) default NULL, `orientation` varchar(100) default NULL, `tbgcolor` varchar(20) default NULL, `tfontsize` varchar(10) default NULL, `tfontcolor` varchar(20) default NULL, `tfont` varchar(50) default NULL, `votes` int(11) default '0')";$result = mysql_query($sql, $connection) OR DIE (mysql_error());?>[/code]I always find it better to split my query string from the actual mysql_query() Link to comment https://forums.phpfreaks.com/topic/24987-creating-mysql-tables-with-php/#findComment-113902 Share on other sites More sharing options...
Zoey Posted October 24, 2006 Author Share Posted October 24, 2006 Hm, okay that got it to connect, but now I'm getting:Incorrect table definition; there can be only one auto column and it must be defined as a key Link to comment https://forums.phpfreaks.com/topic/24987-creating-mysql-tables-with-php/#findComment-113910 Share on other sites More sharing options...
gmwebs Posted October 24, 2006 Share Posted October 24, 2006 Yeah that is because you are missing a rather important SQL statement! When a field is set to auto_increment, like an id column, then it has to be defined as a primary key.[code]<?php$connection = mysql_connect("servername.somedomain.com", "dbUsername", "dbPassword");mysql_select_db("dbName", $connection);$sql = "CREATE TABLE `poll` ( `id` int(11) NOT NULL auto_increment, `name` varchar(50) default NULL, `question` varchar(255) default NULL, `bgcolor` varchar(20) default NULL, `fontsize` varchar(10) default NULL, `font` varchar(50) default NULL, `fontcolor` varchar(20) default NULL, `orientation` varchar(100) default NULL, `tbgcolor` varchar(20) default NULL, `tfontsize` varchar(10) default NULL, `tfontcolor` varchar(20) default NULL, `tfont` varchar(50) default NULL, `votes` int(11) default '0') PRIMARY KEY (`id`)";$result = mysql_query($sql, $connection) OR DIE (mysql_error());?>[/code]MySQL create table reference - [url=http://dev.mysql.com/doc/refman/5.0/en/create-table.html]http://dev.mysql.com/doc/refman/5.0/en/create-table.html[/url] Link to comment https://forums.phpfreaks.com/topic/24987-creating-mysql-tables-with-php/#findComment-113913 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.