We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

fris on 02/07/08


Tagged

file random video


Versions (?)


random redtube.com video


Published in: PHP 


list a redtube video id 1 per line on a text file ex: 7039 7021 6271

etc

  1. <?
  2.  
  3. $videos = file("redtube.txt"); // file with redtube id's
  4. shuffle($videos);
  5.  
  6. echo '<object height="344" width="434">';
  7. echo '<param name="movie" value="http://embed.redtube.com/player/">';
  8. echo '<param name="flashvars" value="id='.$videos[0].'&style=redtube">';
  9. echo '<embed src="http://embed.redtube.com/player/?id='.$videos[0].'&style=redtube" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" height="344" width="434">';
  10. echo '</object>';
  11.  
  12. ?>

Report this snippet 

You need to login to post a comment.