<?php #The rand() function generates a random number: echo(rand()); #Picks a random number from anywhere to anywhere echo(rand(0, 10)); #Picks a random number from 0 to 10 <?