php random comment generator -


this make seem little odd, there script kicking generates random comments, kind of chat room comments.

random stuff "im bored", "hey people", "gonna log cya", "anyone seen film _".

anyone ever come across this?

$comments = array("im bored", "hey people", "gonna log cya", "anyone seen film"); $random_comment = array_rand($comments); echo $comments[$random_comment]; 


if have mysql table comments, can following:
$result = mysql_query("select `comment` `comments` order rand() limit 0,1"); if($result) echo mysql_result($result, 0); 

Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -