BlackKite Posted July 11, 2007 Share Posted July 11, 2007 Not exactly sure why this isn't working. It seems to be having a problem with me closing out the php? Anyone have any idea what's going on? <?php include("../include/session.php"); if($session->logged_in){ $name = $_GET['name']; $ID_CAT = $_GET['ID_CAT']; $navi = $_GET['navi']; $body = $_GET['body']; $ID_MAIN = $navi + 1; mysql_query("INSERT INTO pages (name, ID_CAT, ID_MAIN, body) VALUES('$name', '$ID_CAT', '$ID_MAIN', '$body' ) ") or die(mysql_error()); echo "Your page has been successfully uploaded into the database and will now appear on the site."; ?> Parse error: syntax error, unexpected $end in /home/jaboo12/public_html/sms/ver1/process/create.php on line 19 Link to comment https://forums.phpfreaks.com/topic/59541-solved-insert-new-data-why-isnt-this-working-0o/ Share on other sites More sharing options...
simon551 Posted July 11, 2007 Share Posted July 11, 2007 need a closing bracket } Link to comment https://forums.phpfreaks.com/topic/59541-solved-insert-new-data-why-isnt-this-working-0o/#findComment-295848 Share on other sites More sharing options...
BlackKite Posted July 11, 2007 Author Share Posted July 11, 2007 Oop... now I feel stupid. I've been trying to figure out what the heck was wrong for about 20min now. Haha, thanks. Link to comment https://forums.phpfreaks.com/topic/59541-solved-insert-new-data-why-isnt-this-working-0o/#findComment-295852 Share on other sites More sharing options...
simon551 Posted July 11, 2007 Share Posted July 11, 2007 read 'solved' mod Link to comment https://forums.phpfreaks.com/topic/59541-solved-insert-new-data-why-isnt-this-working-0o/#findComment-295856 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.