You should check out the scripts sites like hotscripts or webscriptsdirectory. There are many sites, and if you do a web search, you'll find a bunch.
Main Topics
Browse All Topicshello,
I am looking for something very simple that can help me generate toplists for my sites!!
this is what I have to create almost everytime by hand!! I would like to look like this
<table width="410" border="1" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" align="center"><strong>Top
</tr>
<tr>
<td width="202" align="center">Table Rows</td>
<td width="202" align="center">
<input name="textfield" type="text" value="1">
</td>
</tr>
<tr>
<td align="center">Table Columns</td>
<td align="center"><input name="textfield2" type="text" value="4"></td>
</tr>
<tr>
<td align="center">Table Width</td>
<td align="center"><input name="textfield3" type="text" value="840"></td>
</tr>
<tr>
<td align="center">CSS Class</td>
<td align="center"><input name="textfield4" type="text" value="liststyle"></td>
</tr>
<tr>
<td align="center">Link</td>
<td align="center"><input name="textfield5" type="text" value="%%link_001%%"></td>
</tr>
<tr>
<td align="center">Title</td>
<td align="center"><input name="textfield6" type="text" value="%%title_001%%"></td
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="Submit" value="Submit">
</td>
</tr>
</table>
that generates something like this
toplist of 8
<table width="800" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="250" class="trades1">
01. <a target="_blank" href="%%lnk_000%%">%%tit_0
02. <a target="_blank" href="%%lnk_001%%">%%tit_0
</td>
<td width="250" class="trades1">
03. <a target="_blank" href="%%lnk_002%%">%%tit_0
04. <a target="_blank" href="%%lnk_003%%">%%tit_0
</td>
<td width="228" class="trades1">
05. <a target="_blank" href="%%lnk_004%%">%%tit_0
06. <a target="_blank" href="%%lnk_005%%">%%tit_0
</td>
<td width="228" class="trades1">
07. <a target="_blank" href="%%lnk_006%%">%%tit_0
08. <a target="_blank" href="%%lnk_007%%">%%tit_0
</td>
</tr>
</table>
or toplist of 16
<table width="800" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="250" class="trades1">
01. <a href="%%tops_000%%">%%exli
02. <a href="%%tops_001%%">%%exli
03. <a href="%%tops_002%%">%%exli
04. <a href="%%tops_003%%">%%exli
</td>
<td width="250" class="trades1">
05. <a href="%%tops_004%%">%%exli
06. <a href="%%tops_005%%">%%exli
07. <a href="%%tops_006%%">%%exli
08. <a href="%%tops_007%%">%%exli
</td>
<td width="228" class="trades1">
06. <a href="%%tops_008%%">%%exli
07. <a href="%%tops_009%%">%%exli
08. <a href="%%tops_010%%">%%exli
09. <a href="%%tops_011%%">%%exli
</td>
<td width="228" class="trades1">
10. <a href="%%tops_012%%">%%exli
11. <a href="%%tops_013%%">%%exli
12. <a href="%%tops_014%%">%%exli
13. <a href="%%tops_015%%">%%exli
</td>
</tr>
</table>
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Here's one
http://www.ucl.ac.uk/is/my
similar to what I posted
Business Accounts
Answer for Membership
by: wildzeroPosted on 2006-12-20 at 15:13:06ID: 18177250
Sooo...
) {
$sql = "SELECT id,name,url FROM sites ORDER BY name ASC LIMIT 10";
$result = mysql_query($sql) OR DIE("mysql select error --> ".mysql_error());
?>
<table width="200">
<tr>
<td>Name</td>
<td>Url</td>
</tr>
<?PHP
While ($row = mysql_fetch_array($result)
?>
<tr>
<td><?PHP echo $row['name']; ?> </td>
<td><?PHP echo $row['url']; ?></td>
</tr>
<?PHP
}
?>
</table>
I know it's not using your table layout, however that should give you a good point in the right direction