Quote:
Originally posted by BluSmurf
I'm having problem with this, I placed $jackpot in forumhome template but on the index page it didn't show up. Any help?
|
Put this code in index.php:
PHP Code:
if ($lot=$DB_site->query_first("SELECT * FROM storelottery WHERE lotnumber='1'")) {
$jackpot="Current Lottery Fund is now: $lot[jackpot]";
} else {
$jackpot="";
}
You can put it before:
PHP Code:
//Most Popular Thread by Replies
And don't forget to put $jackpot in the forumhome template. That should work.