tak zaprve formular daj ako
Kód:
<form enctype="multipart/form-data" method="post">
zadalsie prirad tlacidlu submit name napr name="sent" input na file daj name napr userfile
a potom script daj
Kód:
$uploaddir='./fotozz/';
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);
if (isset($_POST['sent']))
{
move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile);
}
ak ak by si chcel osetrit script proti uploadovaniu inych suborov alebo popripade vypisanie chybovej hlasky tak daj:
Kód:
$filetype= array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
if (isset($_POST['sent']))
{
if (in_array($_FILES['userfile']['type'], $filetype))
{
move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile);
}
else
{
print 'Wrong format of file!'
}
}
toto ti nepusti iny subor ako obrazok a tiez to nepusti len tak upload naprazdno..