Tuesday, May 26, 2009

website title randomization

Here, this a smallest website tilte randomization code in php which not complicated but it also important for the first step learning with php, I just got it from the website and want to keep it as properties for the general
learning, and still hope that it also concerning with the rest of studying. let me detail code as below:


// get a random number $randomize = rand(0, 4); // Change four to how many arrays you haveecho ($title[$randomize]); ?>see it in action.
$title[0] = "Web title 0"; // Title 0

$title[1] = "Web title 1"; // Title 1

$title[2] = "Web title 2"; // Title 2

$title[3] = "Web title 3"; // Title 3
$title[4] = "Web title 4"; // Title 4

// get a random number

$randomize = rand(0, 4); // Change four to how many arrays you have