How to get file source path from users PC when they submit their file on form like below.
<form action="" method="post" enctype="multipart/form-data">
<input type="file" name="image">
<input type="submit" name="submit" value="Submit">
</form>
Example path that I want is file:///C:/Users/hafizul/Downloads/myimage.png
So, I can display user image using the code below:
<?php
$path = 'file:///C:/Users/hafizul/Downloads/myimage.png';
header('Content-Type:image/png');
echo file_get_contents($path,FILE_USE_INCLUDE_PATH);
?>
Thanks!