Une Bévue
2014-09-06 06:44:11 UTC
Avec le code suivant :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Choose file</title>
<style>
</style>
</head>
<body>
<div>
<?php
if(isset($_GET['file']) && isset($_GET['action'])) {
echo "File path received: '" . $_GET['file'] . "'.";
} else {
echo '<form id="file_upload_form" method="get"
enctype="multipart/form-data" action="choose_file.php">
<input name="file" id="file" size="27" type="file" /><br />
<input type="submit" name="action" value="Upload Image" /><br />
<!-- iframe id="upload_target" name="upload_target" src=""
style="width:100px;height:100px;border:5px solid #ccc;"></iframe -->
</form>';
}
?>
</div>
</body>
</html>
je ne reçois QUE le nom du fichier choisi (par exemple 'exemple.png') et
non pas le path entier ('/path/to/mon_fichier.png').
comment faire pour obtenir ce path ?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Choose file</title>
<style>
</style>
</head>
<body>
<div>
<?php
if(isset($_GET['file']) && isset($_GET['action'])) {
echo "File path received: '" . $_GET['file'] . "'.";
} else {
echo '<form id="file_upload_form" method="get"
enctype="multipart/form-data" action="choose_file.php">
<input name="file" id="file" size="27" type="file" /><br />
<input type="submit" name="action" value="Upload Image" /><br />
<!-- iframe id="upload_target" name="upload_target" src=""
style="width:100px;height:100px;border:5px solid #ccc;"></iframe -->
</form>';
}
?>
</div>
</body>
</html>
je ne reçois QUE le nom du fichier choisi (par exemple 'exemple.png') et
non pas le path entier ('/path/to/mon_fichier.png').
comment faire pour obtenir ce path ?