I have a query which works;
$resultf = mysql_query('SELECT `user_id`,`post_time`,`post` FROM `1` WHERE `thread_id` = "'.$t.'" LIMIT 0, 30');
but then if I replace 1 with a variable, like so
$resultf = mysql_query('SELECT `user_id`,`post_time`,`post` FROM "'.$f.'" WHERE `thread_id` = "'.$t.'" LIMIT 0, 30');
where $f=1, it doesn't work.
Thanks in advance.
note; in the first query listed, it only works with the ``s in it.