CODE:
if(isset($_POST['ftp_file'])){
$file=$_POST['file'];
<form method=POST action=ftp.php>
<input type=hidden name=ftp_file>
<input type=file name=file><br>
<input type=submit name=Загрузить!>
$file=$_POST['file'];
<form method=POST action=ftp.php>
<input type=hidden name=ftp_file>
<input type=file name=file><br>
<input type=submit name=Загрузить!>
В переменной $file будет хранится только имя файла.
Например:
Я ввел С:\vasia.txt то в переменную $file запишется только vasia.txt.
Как сделать что бы в переменную $file записывалось не "vasia.txt", а "С:\vasia.txt"?
Пробовал так:
CODE:
if(isset($_POST['ftp_file'])){
$file=$_FILES['file']['name'];
<form method=POST action=ftp.php>
<input type=hidden name=ftp_file>
<input type=file name=file><br>
<input type=submit name=Загрузить!>
$file=$_FILES['file']['name'];
<form method=POST action=ftp.php>
<input type=hidden name=ftp_file>
<input type=file name=file><br>
<input type=submit name=Загрузить!>
Вес таже проблема (