Quote:
Originally Posted by AlCapone
Code:
$url="http://www.site.com/video.flv";
$fp = fopen('$url', 'r');
if($fp) {
$filename="$url";
fclose($fp);
}
|
Don't do this. Not only will this use a whole lot of ram, it will download the file over http first.