I have an html form with input as file.
<form action="" method="post" enctype="multipart/form-data" class="form hideit2">
<input type="file" name="file" id="file" />
<input type="submit" name="submit" value="Submit" class="btn btn-info" />
</form>
I just want to browse the file and get its full path on users system without uploading it to the server.
Eg:- $myvariable = 'C:/user/username/desktop/filename';
Is this possible? Let me know the way.