sql help - select latest forum post?

Tuxdude

New Member
Hi there :)

I need a lil script that echoes the first posting of the latest forum post where forumid=x

Any help?:)
 

Impulse

New Member
Tuxdude said:
Hi there :)

I need a lil script that echoes the first posting of the latest forum post where forumid=x

Any help?:)

I don't have a vB Database handy atm, so I'll try off my heart...

PHP:
<?php
$latestPosts = "SELECT FROM `post` WHERE `parentid` = '#'";
mysql_query($latestPosts);
?>
 
Top