Jump to content

[SOLVED] Insert new data... why isn't this working 0.o


BlackKite

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.