Hello,
I am trying to upload a image to uploads directory
PHP
I removed my username and directory name due to security reasons.
HTML
Maybe somebody else can find something wrong.
iNod
I am trying to upload a image to uploads directory
PHP
PHP:
$att_path = "/home/user/public_html/directory/uploads/";
$uniq = substr( md5(uniqid (rand())), 0, 10 );
$ext = strtolower( substr($_FILES['thumbnail']['name'], -3));
move_uploaded_file($_FILES['thumbnail']['tmp_name'], $att_path."/".$uniq.".".$ext);
$thumbnail = $att_path."/".$uniq.".".$ext;
HTML
Code:
<input name="thumbnail" type="file">
Maybe somebody else can find something wrong.
iNod






