選択の対象となるテキストをquote.txtに保存しておく。テキスト間は改行コードで区切る。
テキストのなかに書式を指定するHTMLタグを書いておくことができる。どこまでのタグが使えるかの確認テストはしていない。
Sample: If you are honest because honesty is the best policy, then your honesty is corrupt.
<?php
srand((double)microtime()*1000000);
$quote = file("quote.txt");
$today = array_rand($quote, 2);
$msg = $quote[$today[0]];
echo $msg;
?>