Simple Redtube Video Url Grabber


/ Published in: PHP
Save to your folder(s)

Had to update a clients script to grab redtube videos.


Copy this code and paste it in your HTML
  1. <?php
  2.  
  3. $page = @implode ('', file('http://redtube.com/16898')); // page html
  4. preg_match("/hashlink\=(.*?)\&/si", $page, $link); // find hashlink
  5. $filelink = rawurldecode($link[1]); // decode hashlink
  6.  
  7. ?>

URL: http://onitindustries.com

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.