Quote:
Originally Posted by sicone
Morning Jeff.. how's it going
Cool tool, can you set it so it displays different girls on the main page daily? Or maybe even a large pic of a girl of the day up top with all the other ladies below like they are now
|
did you mean something like this
http://met-art.masterwebmonkey.com/index_of_the_day.php
I take the indexes from the data set... randomize them...
then determine the set to display based on
$pic_index = date('z',time());
$where_to_start = $items_per_page * $pic_index;
$where_to_end = $where_to_start + $items_per_page;
if ( $where_to_start > $dc ) {
$where_to_start = $where_to_start % $dc;
$where_to_end = $where_to_end % $dc;
}
for ($i=$where_to_start;$i<$where_to_end;$i++){
$display_content[] = $data_content[$i];
}