Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
dont know if this is possible
#4
you can do it with php, just query for the first/last post (whichever you want), cut the post down to a few sentences, and put it in the TITLE of the link to the thread . . .

pseudo-code
$selectPost = mysql_query("SELECT * FROM posts ORDER BY postdate DESC LIMIT 1");

# you can use DESC for the first post, not entirely sure of phpBB or whatever's table name and postdate name, but it's got one.

$postData = mysql_fetch_array($selectPost);
# put the stuff into an array

$postMessage = $postData['message'];
#get the post's content, you can do something here to chop it up, limit the amount of characters to 100 or something.

and where it's linked from the forum --

<A HREF="viewpost.php" TITLE="<?=$postMessage; ?>This Post Title</A>

and that will give you a tooltip with the post's first/last message
ammit potato!
Reply


Messages In This Thread
dont know if this is possible - by speedlemon - 09-05-2004, 03:13 AM
dont know if this is possible - by Jofers - 09-05-2004, 03:55 AM
dont know if this is possible - by speedlemon - 09-05-2004, 04:37 AM
dont know if this is possible - by potato - 09-05-2004, 05:18 AM
dont know if this is possible - by speedlemon - 09-05-2004, 06:05 AM
dont know if this is possible - by TheBigBasicQ - 09-05-2004, 10:55 AM
dont know if this is possible - by speedlemon - 09-05-2004, 07:25 PM
dont know if this is possible - by Neo - 09-05-2004, 07:47 PM
dont know if this is possible - by TheBigBasicQ - 09-05-2004, 11:33 PM
dont know if this is possible - by speedlemon - 09-06-2004, 12:42 AM
dont know if this is possible - by wildcard - 09-06-2004, 12:58 AM
dont know if this is possible - by Zap - 09-06-2004, 01:11 AM
dont know if this is possible - by speedlemon - 09-06-2004, 01:22 AM
dont know if this is possible - by Jofers - 09-06-2004, 02:24 AM
dont know if this is possible - by Zap - 09-06-2004, 10:32 AM
dont know if this is possible - by TheBigBasicQ - 09-06-2004, 05:10 PM
dont know if this is possible - by speedlemon - 09-06-2004, 07:10 PM
dont know if this is possible - by oracle - 09-10-2004, 03:20 AM
dont know if this is possible - by Rokkuman - 09-10-2004, 05:01 AM
dont know if this is possible - by TheBigBasicQ - 09-10-2004, 10:54 PM
dont know if this is possible - by oracle - 09-11-2004, 09:43 AM
dont know if this is possible - by oracle - 09-14-2004, 10:54 AM
dont know if this is possible - by HQSneaker - 09-14-2004, 12:54 PM
dont know if this is possible - by Rokkuman - 09-14-2004, 07:06 PM
dont know if this is possible - by TheBigBasicQ - 09-14-2004, 07:15 PM
dont know if this is possible - by oracle - 09-17-2004, 02:17 AM
dont know if this is possible - by TheBigBasicQ - 09-11-2004, 02:22 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)