| Author |
How to Upload file using POST
|
|
| Mrinmoy 2006-07-27, 7:32 am |
| How to Upload a file in Server using POST?
| |
|
| Mrinmoy wrote:
> How to Upload a file in Server using POST?
Apache is jsut a web server - use one of the server-side languages to help
you with that. Try php (http://www.php.net/ ).
Best,
Anze
| |
| Mrinmoy 2006-07-27, 7:32 am |
| Hi Anzy,
As I could Create File With PUT by
telnet <server IPAddress> 80
PUT /file HTTP/1.1
....
....
Cant we upload file using
POST in this way
thanks,
Mrinmoy
Anze wrote:
> Mrinmoy wrote:
>
>
> Apache is jsut a web server - use one of the server-side languages to help
> you with that. Try php (http://www.php.net/ ).
>
> Best,
>
> Anze
| |
|
|
AFAIK no - but I might be mistaken. POST just posts variables to some
server-side program that has to do something with them. Why not use a
simple script to do whatever you wish with them?
Don't know anything about HTTP PUT though.
Best,
Anze
Mrinmoy wrote:
[vbcol=seagreen]
> Hi Anzy,
>
> As I could Create File With PUT by
>
> telnet <server IPAddress> 80
>
> PUT /file HTTP/1.1
> ...
> ...
>
> Cant we upload file using
> POST in this way
>
> thanks,
> Mrinmoy
>
> Anze wrote:
>
| |
| Mrinmoy 2006-07-27, 1:31 pm |
| Thanks ANZE I actually I dont have much idea bout POST. I would be very
much obliged if you
show me an example by writing a basic script.
Thanks in advance,
Mrinmoy
Anze wrote:
[vbcol=seagreen]
> AFAIK no - but I might be mistaken. POST just posts variables to some
> server-side program that has to do something with them. Why not use a
> simple script to do whatever you wish with them?
>
> Don't know anything about HTTP PUT though.
>
> Best,
>
> Anze
>
>
>
> Mrinmoy wrote:
>
|
|
|
|