ANYone give specifique tutoriabl about fetching anything from any site? like fetching wmv file path from zshare.net or flv path from putfile.com
All you have to do is learn regular expressions. And in some cases you'll need cURL or Stream contexts to send data back to the server. There's no tutorial for "any" site, since all sites work differently.
what about the sites that already gives you the information you need in teh source code... how can you get that? let say in when i check the view source code then it shoud src=domain./blalbal/4564.flv how do i get that src?
Use file_get_contents() to read the source code in a variable, and then use preg_match(), with a pattern like: '~src="([^"]+)"~i' PHP: ... to fetch it. Once you have the source URL, make another request using file_get_contents() again to finally save it. www.php.net/file_get_contents www.php.net/preg_match www.php.net/file_put_contents
any idea on how the following link works it takes video link from zshare http://stopleeching.com/Bolly.php?url=http://www.zshare.net/video/3189461ecc00bf/
yeah thats what i am looking for http://stopleeching.com/Bolly.php?url=http://www.zshare.net/video/3189461ecc00bf/ the source code of that fetching
will give me this source Now i want my phpcode return me only So i try this this is not working anyone can help me to make the code working?