Return to Snippet

Revision: 44961
at April 21, 2011 07:18 by cdog


Initial Code
<?php

$page = @implode ('', file('http://redtube.com/16898')); // page html
preg_match("/hashlink\=(.*?)\&/si", $page, $link);       // find hashlink
$filelink = rawurldecode($link[1]);                      // decode hashlink

?>

Initial URL
http://onitindustries.com

Initial Description
Had to update a clients script to grab redtube videos.

Initial Title
Simple Redtube Video Url Grabber

Initial Tags


Initial Language
PHP