can somebody plz tell me why this works :
<?
header ("Content-type: image/jpeg");
include "pic.jpg";
?>
and this doen't :
<?
header ("Content-type: video/mpeg");
include "dog3.mpg";
?>
... also tried :
<?
header ("Content-type: video/mpeg");
passthru ("cat -B var/video/isr_bil35.mpg");
?>
and
<?
header ("Content-type: video/mpeg");
readfile("var/video/isr_bil35.mpg");
?>
and still doesn't work right.
10X