see, there's your problem
the query you posted in post #1 has no real problem --
Select *
From Table1 a, Table2 b, Table3 c
Where a.ID=b.ID
And a.Title=c.Title
Order By a.Date
however, it does not look like the query you're actually running --
Select *
From Threads t, Users u, Posts p
Where t.tID=" .$_GET['tid']. "
And p.pUserID=u.userID
see if you can spot the difference
HINT: your joins are incomplete!!!