|
||||||||||||||||||||||
Random Quotes : The CodeRandom quotes for your website, a new interesting bit of dynamic content which changes with every refresh of the page. This is great because it makes your site more attractive, and encourages people to revisit your site. There are many ways to do such a script, I'm going to do a basic one that works just by inserting code onto a page. Its quite straight forward. I don't have any decent quotes for my example, so I made some random sentances instead. To begin, set up a set of simarly named sequentially numbered quotes.
This defines the data we want to use/display. Next, pick a random number, between 1 and 5.
Next, echo a random quote.
Note the special
My full code looks like:
$random_number = rand(1,5);
echo ${'quote'.$random_number};
Give it a go. Put the code in a HTML file somewhere, save the file as quote.php, and load to any PHP enabled server.
Author: Markavian
|
tutorial Pages
|
|||||||||||||||||||||