 Lexikon
 Lexikon 
	
<?
$quote = file("quotes.txt"); 
srand((double)microtime()*1000000); 
$rand_desc = $quote[rand(0,count($quote))];
echo $rand_desc;
?>
в файле quotes.txt
запись
text 1
text 2
text 3
text 4
text 5
text 6
text 7
text 8
text 9
text 10
всё вроде работает нормально, ноиногда выбивает ошибку 
Notice: Undefined offset: 10 in H:\www\_test\23 - random text\script.php on line 4
	
 
	
	 Yacc
 Yacc 
	count($quote) = 10, а последний индекс $quote = 9
напиши
$rand_desc = $quote[rand(0,count($quote)-1)];