Thread: php help
View Single Post
Old 04-04-2004, 11:22 PM  
The Professional
Confirmed User
 
Join Date: Oct 2002
Location: Canada
Posts: 520
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>");    
?>
The Professional is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote