Hi,
I have the following code:
$podbannerem = "<a href=out.php?id=".$tab[7]."&url=" . urlencode($tab[1]) . "&cat=" . $cat . " target=_blank>".$tab[0]."</a></b><br>".$tab[2]."<p align=center><small>" . $lang['rating'] . ": " . $ocena . " " . $lang['votes'] . ": " . $glosow . " " . $comments . "</small></p>";
}
} else {
if($tab[3] <> ""){
$bannerek = "<img src=".$tab[3]." border=0>";
} else {
$bannerek = "";
}
if($function['comments'] == "1"){
$id = $tab[7];
$comments = "<a href=\"javascript:new_window('comments.php?siteid=" . $tab[7] . "')\">" . $lang['comments'] . "</a>" . numberofcomments($id) . " (". $komentarzy . ")";
} else {
$comments = "";
}
print "<tr>
<td width=70% align=center bgcolor=" . $tablebody . ">".$podbannerem . "</td>
I want to split the output to different Pages like in this Board (Pages (36): [1] 2 3 » ... Last » )
How can I include that in my Code? Please help me, I´ve tried everithing
gronph