wickedXxxxlegox Posted September 16, 2012 Share Posted September 16, 2012 Helloo... I am having some trouble with my site. This code isn't working. db.php <?php include('includes/db_connect.php') mysql_query("CREATE TABLE news( title VARCHAR(20), name VARCHAR(30), body LONGTEXT date DATE)") or die(mysql_error()); echo "Table Created!"; ?> This is the code for includes/header.php <?php $db = @mysql_connect('mysql12.000webhost.com', 'a1922355_Andrew', 'PASSWORD') or die(mysql_error()); @mysql_select_db('a1922355_wizzle', $db) or die(mysql_error()); ?> Here is the error I get on db.php: Parse error: syntax error, unexpected T_STRING in /home/a1922355/public_html/db.php on line 5 I'm litterally super . Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/268443-php-database-create/ Share on other sites More sharing options...
Pikachu2000 Posted September 16, 2012 Share Posted September 16, 2012 Look at the end of the very first line. What's missing from it? Quote Link to comment https://forums.phpfreaks.com/topic/268443-php-database-create/#findComment-1378410 Share on other sites More sharing options...
wickedXxxxlegox Posted September 16, 2012 Author Share Posted September 16, 2012 I don't see anything wrong with it... Quote Link to comment https://forums.phpfreaks.com/topic/268443-php-database-create/#findComment-1378411 Share on other sites More sharing options...
Psycho Posted September 16, 2012 Share Posted September 16, 2012 ; Quote Link to comment https://forums.phpfreaks.com/topic/268443-php-database-create/#findComment-1378417 Share on other sites More sharing options...
Barand Posted September 16, 2012 Share Posted September 16, 2012 Also missing a comma after LONGTEXT edit PS You should also give every table a primary key Quote Link to comment https://forums.phpfreaks.com/topic/268443-php-database-create/#findComment-1378418 Share on other sites More sharing options...
wickedXxxxlegox Posted September 16, 2012 Author Share Posted September 16, 2012 f*ck. I really suck at coding. I hate myself. Quote Link to comment https://forums.phpfreaks.com/topic/268443-php-database-create/#findComment-1378419 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.