"Erwin Moller"
<since_humans_r ead_this_I_am_s pammed_too_much @spamyourself.c om> wrote in
message news:41fe3284$0 $28978$e4fe514c @news.xs4all.nl ...[color=blue]
> Joker wrote:
>[color=green]
> > How to copy a jpg file on from local computer to remote server on the
> > basis of PHP code?[/color]
>
> Hi,
>
> If you mean ftp, check www.php.net:
>
> http://nl2.php.net/manual/en/ref.ftp.php[/color]
or run a php script on the remote server that uses copy().
"skrebbel" <e.teeselinkNOS @PAMstudent.tue .nl> wrote in message
news:ctldqs$2gs $1@news.tue.nl. ..[color=blue]
>
> "Erwin Moller"
> <since_humans_r ead_this_I_am_s pammed_too_much @spamyourself.c om> wrote in
> message news:41fe3284$0 $28978$e4fe514c @news.xs4all.nl ...[color=green]
> > Joker wrote:
> >[color=darkred]
> > > How to copy a jpg file on from local computer to remote server on the
> > > basis of PHP code?[/color]
> >
> > Hi,
> >
> > If you mean ftp, check www.php.net:
> >
> > http://nl2.php.net/manual/en/ref.ftp.php[/color]
>
> or run a php script on the remote server that uses copy().
>
>[/color]
You can also use XML-RPC. Read the entire file in and base64encode()
the whole file and dump it across XML-RPC. Benefit is the sending
computer does not have to be a server, could be a computer anywhere,
even behind a firewall.
copy() will only work if the sending computer is publicly accessible
over the network. This might not be the case.
boom wrote:[color=blue]
> or http://www.plsgoogleit.com
>
>
> "skrebbel" <e.teeselinkNOS @PAMstudent.tue .nl> wrote in message
> news:ctldqs$2gs $1@news.tue.nl. ..
>[color=green]
>>"Erwin Moller"
>><since_humans _read_this_I_am _spammed_too_mu ch@spamyourself .com> wrote in
>>message news:41fe3284$0 $28978$e4fe514c @news.xs4all.nl ...
>>[color=darkred]
>>>Joker wrote:
>>>
>>>
>>>>How to copy a jpg file on from local computer to remote server on the
>>>>basis of PHP code?
>>>
>>>Hi,
>>>
>>>If you mean ftp, check www.php.net:
>>>
>>>http://nl2.php.net/manual/en/ref.ftp.php[/color]
>>
>>or run a php script on the remote server that uses copy().
>>
>>[/color]
>
>
>[/color]
Comment