Text
|
|
|
|
<?php //Put each line of text to be chosen from in the form
//$line[] = "your text";
$line[] = "Line 1"; $line[] = "Line 2"; $line[] = "Line 3";
$num = count($line) - 1; srand ((double) microtime() * 1000000);
$random = rand(0,$num);
$oneliner = $line[$random];
echo "<P>$oneliner</P>"; ?>
|
|
|
Usage Example
|
|
|
Rate This Script
|
|
|
|