-4

I am using a HTML web-page, i don't want to use PHP coding. I am trying to find some code that will allow me to upload a file and place it in a specified directory. How would i do that.

input type="file", allows me to specify a file but what code allows me to move or copy that file to another location.

Jason Moore
  • 239
  • 1
  • 2
  • 7
  • If you want to upload a file you'll need a server-side script. It doesn't have to be PHP, but you'll need more than just HTML. –  Apr 14 '14 at 12:42
  • You need to submit the form to a script on the server that will read and store the file. This is unavoidable. – Alex K. Apr 14 '14 at 12:42
  • :D Please read more about HTML. You need server-side-program to do that. e.g. PHP (most popular), Perl, C ... – raiserle Apr 14 '14 at 12:50

1 Answers1

-2

It's impossible to oparte on upload file without server-side technology (like php), sorry...

Xawier
  • 165
  • 1
  • 11
  • I thaught that there was some code that could be entered that would allow me to at least transfer a file to a server, but thanks anyway – Jason Moore Apr 14 '14 at 12:43
  • Any server-side code should be capable of handling an upload. Certainly ASP.NET can do it - no PHP required. –  Apr 14 '14 at 12:43
  • I dont have anything server-side, its just webspace – Jason Moore Apr 14 '14 at 12:45