I am getting a parse error on line twelve.
PHP Code:
<?php
require_once('/Library/WebServer/Documents/forums/global.php');
$threads = $DB_site->query("
++++++++SELECT *
++++++++FROM " . TABLE_PREFIX . "thread AS thread
++++++++WHERE thread.forumid = 11
++++++++ORDER BY dateline DESC
++++++++LIMIT 10
++++");
++++while ($thread = $DB_site->fetch_array($threads))
++++{
++++++++.....process....
++++}
?>
The syntax looks alright to me so im not sure what's going on.
*edit* not sure why those plus signs are being put in there, they aren't part of the file it seems that the php vbcode is adding them for some reason.