Okay this is a topic for all the programmers to share there great codes/scripts.
I happen to be a programmer.
Here is a random text script!
Code:
<?PHP
$random = rand(0,5);
$ra[0] = "Hello";
$ra[1] = "Whats up?";
$ra[2] = "How are you?";
$ra[3] = "Whats your name?";
$ra[4] = "How old are you?";
$ra[5] = "What are you up to?";
echo $ra[$random];
?>
For an example of this go
Here