|
Or if the gallery urls and such are already in a database just create a query to pull out random galleries.
SELECT * FROM galleries_table ORDER BY Rand() LIMIT 100;
will pull out 100 random galleries from the galleries table. If its in mysql that is.
|