|
Gang Bang |
Next
Update:
=date('m/d/Y', time()+60*60*24)?>
|
|
$query = mysql_query("select * from video where VI_removed='n' and VI_page='230' order by rand()");
$i = 1;
while( $row = mysql_fetch_array( $query ) )
{
$i<10?$num="0".$i:$num=$i;
// Choose a url for today...
$urls = explode("\n", $row['VI_url']);
$urlIndex = date('j') % count($urls);
if (isset($urls[$urlIndex])) {
// The url element is set, so let's use the link for today
$row['VI_url'] = $urls[$urlIndex];
} else {
// The url element is NOT set, so let's just fall back onto the last url posted
$row['VI_url'] = array_pop($urls);
}
// Just for the french section, we'll set the title and description to the french version
$row['VI_title'] = $row['VI_title_en'];
$row['VI_desc'] = $row['VI_desc_en'];
if( strtolower(substr($row['VI_url'],0,7)) != "http://" )
$row['VI_url'] = "http://".$row['VI_url'];
?>
|
$i++;
}
?>
|
|
 |
|