not working :disappointed:
PHP Code:
<?
$DB = mysql_connect("localhost", "SQLU_SER", "SQL_PASS");
mysql_select_db("SQL_DATABASE", $DB);
$numbersthreads= mysql_query("SELECT count(*) AS threads,max(threadid) AS maxthread FROM thread WHERE forumid=7 LIMIT 5");
$numberthreads= number_format($numbersthreads['threads']);
$getnewestthreadforum= mysql_query("SELECT threadid,title FROM thread WHERE threadid=$numbersthreads[maxthread] LIMIT 5");
$newthread=$getnewestthreadforum['title'];
mysql_close($DB);
echo "<a href=showthread.php?s=$session[sessionhash]&threadid=$newthreadid>$newthread</a>";
?>
it give me this output:
Code:
<a href=showthread.php?s=&threadid=></a>