Example: This is some text in italic
Documentation:

This tutorial will go over how to create a randomizer script for displaying a random sentence, number or anything you like. This script is very simple but useful.

The Script:

This is some text in bold
Part 1: Defining what you want to randomize
This is quite simple, just replace what is between the quotes with what you want.

$randtext[] = "This is some text";

If i wanted to change this sentence to say 'Different Random text' i would type:

$randtext[] = "Different Random text";

Part 2: Defining how to display the random output
Just add some HTML tags into the ECHO line. You will need the right syntax for this (shown below). If you don't want to change how every string looks, skip this part.

This will make every string output as bold:
echo "".$randtext[$randomtext]."";

Finished
Easy as. If you have any questions about anything to do with this page or general randomizing with PHP, post here and i or one of the www.konceptwebmasters.com staff will help you out.

Enjoy!
- Brett