Here's my script so far:
<?php mysql_connect("localhost","####","####"); mysql_select_db("socomcen_home"); {
$result = mysql_query("select * from templates where validate like '%1%' order by id");
while($r=mysql_fetch_array($result)){
$id=$r["id"];
$name=$r["name"];
$game=$r["game"];
$screenshot=$r["screenshot"];
$designer=$r["designer"];
$designerlink=$r["designerlink"];
$preview=$r["preview"];
$download=$r["download"];
echo "
<!-- Start Templates Repeat -->
<div style=\"float: left; height: 118px; width: 369px;\">
<div class=\"templates-preview\"><img src=\"screens/$screenshot\" alt=\"\" /></div>
<div class=\"templates-info\">
<div class=\"templates-info2\"><span style=\"font-size: 10px; color: #757575;\">Designed by</span> <a href=\"../forums/$designerlink\">$designer</a></div>
<div class=\"templates-info2\"><span style=\"font-size: 10px; color: #757575;\">This is a </span>$game <span style=\"font-size: 10px; color: #757575;\">template.</span></div>
<div class=\"templates-info2\"><div style=\"float: left;\"><span style=\"font-size: 10px; color: #757575;\">Template ID Number:</span> <a href=\"link.php?view=$id\" target=\"_blank\">$id</a></div><div style=\"float: right;\"><span style=\"color: #999966; cursor: default;\" title=\"Need to directly link to this template? Click the id#, then copy the URL\">-?-</span> </div></div>
</div>
<div class=\"templates-links\">
<div style=\"float: left;\"><a href=\"$preview/\"><img src=\"../background/templates/preview.jpg\" alt=\"\" border=\"0\" /></a></div>
<div style=\"float: right;\"><a href=\"$download\"><img src=\"../background/templates/download.jpg\" alt=\"\" border=\"0\" /></a></div>
</div>
</div>
<!-- End Templates Repeat -->\n\n\n";
}
mysql_close();
?>
I need the pages echoed out like this, with 10 results per page.
Fist | Previous | 1 | 2 | 3 | 4 | 5| ..... | Next | Last
I know this is asking a lot, but could someone add this to the script so I can see what you did? I have 12 other scripts like this on my website that I'm going to try to change.
Thank you for your time and effort.
