How to copy a jpg file to the server

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Joker

    How to copy a jpg file to the server

    How to copy a jpg file on from local computer to remote server on the basis
    of PHP code?


  • Erwin Moller

    #2
    Re: How to copy a jpg file to the server

    Joker wrote:
    [color=blue]
    > 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:



    Regards,
    Erwin Moller

    Comment

    • skrebbel

      #3
      Re: How to copy a jpg file to the server


      "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().


      Comment

      • boom

        #4
        Re: How to copy a jpg file to the server

        or http://www.plsgoogleit.com


        "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]


        Comment

        • Martin Meng

          #5
          Re: How to copy a jpg file to the server


          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.

          Junxter Ad Network



          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

          Working...