I am getting this error
PHP Parse error: syntax error, unexpected T_VARIABLE, expecting ')' in /Applications/MAMP/htdocs/widget_corp/includes/functions.php
from the following code
function get_all_subjects($public = true)
{
global $connection;
$query = "SELECT *
FROM subjects
ORDER BY position ASC";
$subject_set = mysql_query($query, $connection);
confirm_query ($subject_set);
return $subject_set;
}
$subject_set = mysql_query($query, $connection); is the affected line
Any help