
07-13-2005, 06:33 AM
|
|
|
Join Date: Aug 2002
Location: uk
Posts: 70
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
In Sitemap.php
Above
Quote:
/* ==========[ PRINT PAGE ]======= */
|
Put
Quote:
$arcade = $DB_site->query("SELECT title, gameid FROM " . TABLE_PREFIX . "games ORDER BY file ASC LIMIT 30");
while($games = $DB_site->fetch_array($arcade))
{
$get_games .= '<a href="' . $vboptions['bburl'] . '/arcade.php?do=play&gameid=' . $games['gameid'] . '">' . $games['title'] . '</a> ';
}
|
In The Template:
Below
Quote:
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%"><tr><td style="vertical-align:top">
|
Put
Quote:
<table align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%"><thead><tr><td class="tcat"><a style="float:$stylevar[right]" href="#" onclick="return toggle_collapse('games')"><img id="collapseimg_games" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_games].gif" alt="" border="0" /></a>Arcade Games</td></tr></thead>
<tbody id="collapseobj_games" style="$vbcollapse[collapseobj_games]"><tr><td width="100%" align="left" class="alt1">$get_games <b>»</b> <b><span class="time">Please</span></b> <a href="$vboptions[bburl]/register.php?$session[sessionurl]">$vbphrase[register]</a> <b><span class="time">
To Play Games In The Arcade.</span></b></td></tr></tbody></table><br />
|
|