
umm problem when i enter my sql thing this error comes up :9 im ok with html but cant get hy head around my sql could anyone help? thanks
tomPHP Code:Error
SQL query:
CREATE TABLE `sitestatus` (
`id` INT( 2 ) NOT NULL AUTO_INCREMENT ,
`status` VARCHAR( 10 ) NOT NULL ,
`offmsg` TEXT NOT NULL ,
`onpage` VARCHAR( 50 ) NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM INSERT INTO `sitestatus` ( `id` , `status` , `offmsg` , `onpage` )
VALUES (
'1', 'off', 'The site is currently offline for some much needed maintenance work on the frameworks!', 'http://example.com/'
)
MySQL said:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'INSERT INTO `sitestatus` (
`id` ,
`status` ,
`offmsg` ,
`onpage`
)
VALUES ' at line 9
I had this problem too;umm problem when i enter my sql thing this error comes up :9 im ok with html but cant get hy head around my sql could anyone help? thanks
tomPHP Code:Error
SQL query:
CREATE TABLE `sitestatus` (
`id` INT( 2 ) NOT NULL AUTO_INCREMENT ,
`status` VARCHAR( 10 ) NOT NULL ,
`offmsg` TEXT NOT NULL ,
`onpage` VARCHAR( 50 ) NOT NULL ,
PRIMARY KEY ( `id` )
) ENGINE = MYISAM INSERT INTO `sitestatus` ( `id` , `status` , `offmsg` , `onpage` )
VALUES (
'1', 'off', 'The site is currently offline for some much needed maintenance work on the frameworks!', 'http://example.com/'
)
MySQL said:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'INSERT INTO `sitestatus` (
`id` ,
`status` ,
`offmsg` ,
`onpage`
)
VALUES ' at line 9
Remove the insert bits, and put this only execute this query:
Code:CREATE TABLE `sitestatus` ( `id` INT( 2 ) NOT NULL AUTO_INCREMENT , `status` VARCHAR( 10 ) NOT NULL , `offmsg` TEXT NOT NULL , `onpage` VARCHAR( 50 ) NOT NULL , PRIMARY KEY ( `id` ) ) ENGINE = MYISAM
I was in the middle of writing new code for Ed's system, but I have to go.
PHP Code:Warning: Cannot modify header information - headers already sent by (output started at /home/vivhost/public_html/maintenance/config.php:13) in /home/vivhost/public_html/maintenance/login.php on line 16
Warning: Cannot modify header information - headers already sent by (output started at /home/vivhost/public_html/maintenance/config.php:13) in /home/vivhost/public_html/maintenance/login.php on line 17
Nice and simple.
Well done!
- Lee
Student Pilot EGBW | Cessna 152 G-BHPY G-BTVW
Passed Air Law exam April 25th
Want to hide these adverts? Register an account for free!