Ping
Новичок
Zend ругается на рабочий код. Почему?
Zend вываливает Undefined index: picture
PHP:
<form enctype="multipart/form-data" action="index.php" method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="300000">
<input name="picture" type="file">
<input type="submit" value="Send File">
</form>
<?
//$uploaddir = '/var/www/uploads/';
//$uploadfile = $uploaddir . basename($_FILES['picture']['name']);
$my_file = $_FILES['picture']['name'];
print_r($_FILES);
echo '<br>';
print $my_file;
?>
