Hello. I'm trying to include my favourite quotes in my footer. The code goes like this:
<? $quote = file("quotes.txt"); srand((double)microtime()*1000000); echo $quote[rand(0,count($quote))]; ?>
How do I add this to my footer in order to show the quote?
<? $quote = file("quotes.txt"); srand((double)microtime()*1000000); echo $quote[rand(0,count($quote))]; ?>
How do I add this to my footer in order to show the quote?
Comment