i have this code
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<?
if (isset($_POST['Submit']))
{
$uplFolder=$_POST['uplFolder'];
echo $uplFolder;
$userfile1 = $_FILES['file']['tmp_name'];
$userfile_name1 = $_FILES['file']['name'];
if (!copy($userfile1,"$uplFolder$userfile_name1")) {
echo $userfile1."<br>";
echo "$uplFolder$userfile_name1";
echo "<br>";
echo " found errror";
}
else{
echo "success";}
}
?>
<form action="<?=$_SERVER['PHP_SELF']?>" method="post" enctype="multipart/form-data" name="form1">
<input type="file" name="file">
<input type="radio" name="uplFolder" value="
../../ProdImages/" checked>Product Images Directory (<b>
../../ProdImages/</b>)<br>
<input type="radio" name="uplFolder" value="
../Downloads/">Downloadable Items Directory (<b>
../Downloads/</b>)<br>
<input type="submit" name="Submit" value="Submit">
</form>
</body>
</html>
NOW THIS works perfect on any kind of browser but i dont know why it is not working on IE I got this error
Warning: copy( ../../ProdImages/jansample.jpg): failed to open stream: No such file or directory in c:\inetpub\wwwroot\exhaust\Admin\jansample.php on line 17
Any ideas??