I made a script that extracts the link from any video that is hosted on mp4upload, only when the link is extracted the ip from my site that is identified. What I wanted to know how does that make the client ip to be identified? I've tried using curl but it did not work: /
<?php
$url = 'http://www.mp4upload.com/embed-'.$_GET['id'].'.html'; //:D
$v=@file_get_contents($url);
$source = explode("'file':", $v);
$source = explode(',', $source[1]);
$source = explode("'", $source[0]);
foreach($source as $link){$source = $link;if($source!=''){echo $video = $source;}}
?>