I have a simple Selection:
Code: Select all
$topicid = $_GET["t"];
$sql = 'SELECT poster_id, forum_id
FROM ' . POSTS_TABLE . '
WHERE topic_id = ' . $topicid;
Thank you
Code: Select all
$topicid = $_GET["t"];
$sql = 'SELECT poster_id, forum_id
FROM ' . POSTS_TABLE . '
WHERE topic_id = ' . $topicid;