PDA

View Full Version : firstpost id?


AnhTuanCool
10-30-2004, 07:27 PM
Hi,

I'm on making a hack and need to find the postid of the firstpost in thread. Does anyone know how to write a script with that purpose, please share with me, thank you :)

Brad
10-30-2004, 09:13 PM
Try this:

$threadid = '202';
$first_postid = $DB_site->query_first("SELECT firstpostid FROM " . TABLE_PREFIX . "thread WHERE threadid = $threadid");

AnhTuanCool
10-30-2004, 11:23 PM
Oh okay, and how can I fetch out the result, $DB_site->fetch_array?

AnhTuanCool
10-31-2004, 04:01 AM
Never mind, I figure out myself, thank Brad for helping ;)