Join the forums now, and start posting to receive access to our Scripts Vault!
<?php######################### Made by Sava - ssavaa@gmail.com #########################// The name of your quote file$quote_file = "quotes.txt";// Open the quote file$fp = fopen($quote_file, "r");// Read the contents and tokenize the file to individual quotes$quotes = fread($fp, filesize($quote_file)); $array = explode("\n",$quotes); fclose($fp); // Find a random quotesrand((double)microtime()*1000000); $array_index = (rand(1, sizeof($array)) - 1); // Show the random quoteecho $array[$array_index]; ?>
Why cant we just get he scripts for free anyways?