Re: [PHP] Re: File upload in map drive with PHP

2012-01-26 Thread Jim Lucas
On 01/26/2012 07:13 AM, Jim Giner wrote: You're using a GET in your script when your form is a POST. and if you look at the method value you will see that he is passing upload=1 in the URL. Which would be seen as a GET value. -- Jim Lucas http://www.cmsws.com/ http://www.cmsws.com/examples

Re: [PHP] Re: File upload in map drive with PHP

2012-01-26 Thread Stuart Dallas
On 26 Jan 2012, at 15:10, Mehmet YAYLA wrote: > > I'm using code this bellow. > > > if (!empty($_GET["upload"])) { >$uploaddir ="x:\\file/"; > >$uploadfile = $_FILES['userfile']['name']; > >print ""; > >if (move_uploaded_file($

RE: [PHP] Re: File upload in map drive with PHP

2012-01-26 Thread Mehmet YAYLA
banyhandball.com > Date: Thu, 26 Jan 2012 10:00:29 -0500 > Subject: [PHP] Re: File upload in map drive with PHP > > Do you mean you are trying to do an upload of a file on a mapped drive, such > as a network drive? Is this upload using an html form with an type="file"&

[PHP] Re: File upload in map drive with PHP

2012-01-26 Thread Jim Giner
Do you mean you are trying to do an upload of a file on a mapped drive, such as a network drive? Is this upload using an html form with an tag? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php