Contents |
Display a random image on a external page
This tiny module just provides a small interface to be able to fetch a small block of HTML containing a random image. This forum thread may have more information: http://gallery.menalto.com/node/93574
The source files can be found here:
http://code.nkinka.de/gitweb?p=randimg.git;a=summary
Get the latest version
Or to download a version at a specific commit, click the "snapshot" link to the far right of each commit message at the source URL above.
Alternatively, you can use git to clone it:
$ git clone git://code.nkinka.de/randimg.git
Save the folder to the modules directory on the server. Activate the module: Login -> Admin -> Modules. Check the box next to the module. Click update at the bottom of the page.
To see an example of this module in action visit the following URL. Each time you reload the page a new image should appear:
Paste the following code into any webpage (where PHP is available, of course):
<?php
$imglink = file_get_contents("http://EXAMPLE.COM/gallery3/index.php/randimg", "r");
echo "$imglink";
?>
Don't forget to edit the URL for the proper location/domain.