Posted by McKirahan on 03/02/07 16:30
<irfan.mohammed@gmail.com> wrote in message
news:1172848717.450142.298260@s48g2000cws.googlegroups.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_FILENAME"];
$path = substr($path, 0, strrpos($path, "/")+1);
[Back to original message]
|