I trying to code a small script that will display content but when the user refreshes the page different content will be displayed. Any help?
content from an array, a database, a file?
just context like an image or something after refreshed will change to specified content like another image or text
put the images/whatever into an array, use array_rand() to select a random entry, display that
print $array[array_rand($array)];