I am executing some queries and am getting the following the error:
Parse error: syntax error, unexpected '$section2' (T_VARIABLE) on line 22
Line 22 is:
$section2 = $db->prepare("INSERT INTO learning_style_scores VALUES (5,12,4)");
I don't have a clue why I am getting this, I have checked my syntax and all seems to be correct. It basically doesn't like anything after the $section1
query is executed
EDIT:
I understand this is prone to SQL injection but I am doing it like this for testing purposes only.
<?php
session_start();
try {
$db = new PDO("mysql:dbname=questionnaire;host=localhost", "root", "");
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
}
catch(Exception $e)
{
echo 'Caught exception: ', $e->getMessage(), "\n";
}
$session = md5(session_id());
// insert section1 data into database
$section1 = $db->prepare('INSERT INTO section1 VALUES (7,"test")');
$section1->execute();
// insert learning style score into database
$section2 = $db->prepare("INSERT INTO learning_style_scores VALUES (5,12,4)");
$section2->execute();
?>