Alex KGB
Гуру форума
- Регистрация
- 28 Сен 2009
- Сообщения
- 399
- Реакции
- 81
вот что я нашел на эту тему:
PHP:
<?
/* Start Quoter Code
'Quoter' Script By: JbA
Web Address: http://www.4cm.com/
Email Address: support@4cm.com
Use of this code is allowed, free, and offered
as long as you email us with the URL of the page
your using it on!
It is offered 'AS IS', and 4CM takes no claim (responsibility!)
that it will work, or that it won't screw up your system!
*/
$quote = file("quotes.txt");
srand((double)microtime()*1000000);
echo $quote[rand(0,count($quote))];
echo "Quote Script By: <a href=\"http://www.4cm.com/\">www.4cm.com</a>";
?>