I think the Parse error might actually be on the last line of your query ( the " .'; "). I tested that on my page and if I put in the query, as is, it gave me a parse error. Without the ending .' it was okay though.
> function view_post($tid){ ______________________________________________ > $query = 'select forum_post.name, forum_post.time, forum_post.uid, > forum_post.message, priv_user.username from forum_post, priv_user where > forum_post.uid = priv_user.uid AND forum_post.tid = '.$tid.'; // HERE ______________________________________________ > $result = mysql_query($query) or die("Query failed: $query<br>" . > mysql_error()); > $num_results = mysql_num_rows($result); > > for ($i=0; $i < $num_results; $i++) > { > $row = mysql_fetch_array($result); > echo $row['name'].' '.date('jS-M-Y',$row['time']).' > '.$row['username']."\n<br>"; // Parse error here - line 24 > echo $row['message']."\n<br>"; > } > > } -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php