Home » Archive

Articles tagged with: functions

PHP Tutorials, Tutorials »

[28 Feb 2009 | No Comment | 127 views]

I don’t think anything else that benefited from PHP then e-commerce. Without PHP I would think it be a lot tricker to run a e-commerce without a little PHP for back end support. Even though ASP is its own language and could do the same thing it is a bit tricky to run ASP on a linux server without doing some modifications.

PHP Tutorials, Tutorials »

[19 Feb 2009 | No Comment | 239 views]

Although Hello World is the most recognized two words that are used when beginning a new language, I would have to think being able to generate random numbers depending on what language you are using. So how do you generate numbers using PHP, well the thing is with setting up random numbers with PHP is almost like setting up random numbers using JavaScript with a few variables and of course displaying those random numbers.

/* This script generates 3 random numbers. */

// Create three random numbers:<br />
$n1 = rand (1, 99);
$n2 …