Sorry,

I really have tried to fix this.

I get a parse error on line 24(see comment in script)

*Any Way* Here is the script.

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.';
$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>";
 }

}

I am getting really frustrated. I know I really shouldn't use the mailing
list for debugging. My editors not showing anything obvious with syntax
highlighting.


--
JJ Harrison
[EMAIL PROTECTED]
www.tececo.com




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to