im working on this cms and i keep getting
Parse error: syntax error, unexpected T_VARIABLE in C:\wamp\www\mega_site\includes\functions.php on line 27
Parse error: syntax error, unexpected T_VARIABLE in C:\wamp\www\mega_site\includes\functions.php on line 27
PHP Code:
<?php
// This file is the place to store all basic functions
function confirm_query($reulst_set){
if (!$result_set) {
die("Database selections failed: " . mysql_error());
}
}
function get_all_subjects() {
global $connection;
$query = "SELECT *
FROM subjects
ORDER BY position ASC";
$subject_set = mysql_query($query, $connection);
confirm_query($subject_set);
return $subject_set;
}
20
21 function get_pages_for_subject($subject_id) {
22 global $connection;
23 $query = "SELECT *
24 FROM pages
25 WHERE subject_id = {$subject_id}
26 ORDER BY position ASC"
27 $page_set = mysql_query($query, $connection);
28 confirm_query($page_set);
29 return $page_set;
30 }
31 }
32 ?>
Work with
Next step after
Comment