Thread: PHP Script help
View Single Post
Old 09-10-2003, 11:40 PM  
JSA Matt
So Fucking Banned
 
Join Date: Aug 2003
Location: San Diego, CA
Posts: 5,464
keep it simple : )

PHP Code:
<?php
    $file        
"random.txt";
    
$file_Content    file($file);

    if (
count($file_Content) > 0)    {
        
$line $file_Content[rand(0,count($file_Content)-1)];
    
    echo 
$line;
    }
?>
JSA Matt is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote