problem with getting fullpath of the selected file from my computer

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • irfan.mohammed@gmail.com

    problem with getting fullpath of the selected file from my computer

    Dear All,

    I am working on php with html form input type file.i want to get the
    fullpath of my file which i have selected from my computer.

    example :C:\programs\.. ...

    can anyone help me,

    Regards
    Irfan

  • McKirahan

    #2
    Re: problem with getting fullpath of the selected file from my computer

    <irfan.mohammed @gmail.comwrote in message
    news:1172848717 .450142.298260@ s48g2000cws.goo glegroups.com.. .
    Dear All,
    >
    I am working on php with html form input type file.i want to get the
    fullpath of my file which i have selected from my computer.
    >
    example :C:\programs\.. ...
    >
    can anyone help me,

    Will this help?

    $path = $_SERVER["SCRIPT_FILENAM E"];
    $path = substr($path, 0, strrpos($path, "/")+1);


    Comment

    • irfan.mohammed@gmail.com

      #3
      Re: problem with getting fullpath of the selected file from my computer

      On Mar 2, 5:30 pm, "McKirahan" <N...@McKirahan .comwrote:
      <irfan.moham... @gmail.comwrote in message
      >
      news:1172848717 .450142.298260@ s48g2000cws.goo glegroups.com.. .
      >
      Dear All,
      >
      I am working on php with html form input type file.i want to get the
      fullpath of my file which i have selected from my computer.
      >
      example :C:\programs\.. ...
      >
      can anyone help me,
      >
      Will this help?
      >
      $path = $_SERVER["SCRIPT_FILENAM E"];
      $path = substr($path, 0, strrpos($path, "/")+1);
      Dear McKirahan,

      i need the client side path,not the server.if i choose a file from
      desktop it should give the path.

      $_FILES only give the filename,i need the full path.

      can you help me in this...

      Thank you for your help,

      Regards
      Irfan

      Comment

      • Rik

        #4
        Re: problem with getting fullpath of the selected file from my computer

        <irfan.mohammed @gmail.comwrote :
        <N...@McKirahan .comwrote:
        ><irfan.moham.. .@gmail.comwrot e:
        I am working on php with html form input type file.i want to get the
        fullpath of my file which i have selected from my computer.
        >>
        example :C:\programs\.. ...
        i need the client side path,not the server.if i choose a file from
        desktop it should give the path.
        >
        $_FILES only give the filename,i need the full path.
        >
        can you help me in this...
        The browser doesn't send this, and rightly so, there is no way to
        determine where the file came from when uploading using only HTML & PHP.

        --
        Rik Wasmus

        Comment

        Working...