hallo ich habe folgendes Problem:
backup.php :
.....
<form name = "muh" method="post" action="erstellebackup.php">
<input type="file" name="path" size="50" maxlength="100000">
<input type='submit' width='100%' value="OK">
</form>
.......
erstellebackup.php:
.....
$backupFile = $_POST['path'];
echo $backupFile;
.........
Das Problem ist, dass ich nicht den vollen Pfad bekomme.
Wenn ich zb. c:\a\b.txt wähle gibt er nur b.txt aus
Wie kann ich den vollständigen Pfad bekommen?
mfg timurin