| Posted by Jimmy on 06/13/30 12:00 
Hi,
 I'd to upload a file to a folder :
 
 $upload_dir = "MyFolder/";
 
 if (isset($_POST['action'])) {
 if (!is_dir("$upload_dir"))
 {  die ("The directory doesn't exist");  ....
 
 it's ok when I use it!
 
 Now, my windows XP Sp2 has a web server IIS
 
 $upload_dir = "http://localhost/MyFolder/";
 
 and it gives the error :  The directory doesn't exist
 
 "MyFolder/" is always in C:\Inetpub\wwwroot
 ie  C:\Inetpub\wwwroot\MyFolder
 
 Thank you for showing me how to use
 "myFolder" via http://localhost
 [Back to original message] |