Random Images Random Images
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Random Images

Started by thomas1981, April 05, 2006, 11:05:56 AM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

thomas1981

Hi folks,
in the admin area I set "breadcrumb/catlist/alblist". In this case the random pictures are disabled. That is ok. But now I need help:
I want to create a site called random_images.php and in this file I only want to show random images.
What is to do, showing "breadcrumb/catlist/alblist" in the cpg144\index.php and only "random,2/lastup,2" in the "random_images.php"?

Kind regards

Stramm

/**
* display_thumbnails()
*
* Generates data to display thumbnails of pictures in an album
*
* @param mixed $album Either the album ID or the meta album name
* @param integer $cat Either the category ID or album ID if negative
* @param integer $page Page number to display
* @param integer $thumbcols
* @param integer $thumbrows
* @param boolean $display_tabs
**/

function display_thumbnails($album, $cat, $page, $thumbcols, $thumbrows, $display_tabs)

eg:

<?php
define
('IN_COPPERMINE'true);
require(
'include/init.inc.php');

pageheader('Random Pics');
display_thumbnails('random'01$CONFIG['thumbcols'], 2false);
pagefooter();
?>


thomas1981

Hello,
thanks for your answer! Everything works! :)

Kind regards