I have managed to get my image to display using the following code called img.php3
<?
$path = "/mydir/pics/";
$fp = @fopen("http://ip_address/cgi/nph-jpeg.exe?-aw+160+-ah+120+-single+-device+9+-video+0","r");
if ($fp) {
fpassthru($fp);
}
else
{ print"The file does not exist"; }
?>
IIt creates an image called img.jpg. I want to rename it and save it to my server. I have tried the copy commands but no good.
Please help, i am in distress!!!
Jules