PHP Code:
<?php
$total_thumbs = 1;
$columns = 1;
$links=File("cumfiesta.txt");
// Do Randomization
srand((double)microtime()*1000000);
shuffle($links);
srand((double)microtime()*1000000);
shuffle($links);
// Heres the start of the table
echo("<table cellspacing=0 cellpadding=0 border=0>");
$i = 0;
while ($i < $total_thumbs) {
// Heres the Start of a Table Row
echo ("<tr>");
for ($j=0; $j<$columns; $j++) {
// The Start of a Table Cell
echo("<td align='center'>{$links[$i]}</td>");
$i++;
}
echo ("</tr>");
}
echo("</table>");
?>