$quotefilepath = "quotes.txt"; function randomline($filename) { $file = file($filename); srand((double)microtime()*1000000); while ($randomquote == "") { $randomquote = ereg_replace("\n","",$file[rand(0,count($file))]); } return $randomquote; } $quote = randomline("$quotefilepath");
Show Your Support
require("global.php"); eval("dooutput(\"".gettemplate('templatename')."\");");