We provide webhosting for thousands of domains.
Transfer your domains to us and join our satisfied customers.
Domains from 5,99€. Renewal for the same price.
Mo-Fr: 08:00-20:00
Sa-Su: 10:00-18:00
Mo-Fr: 08:00-16:30
If you transfer your domain to us, we pay transfer fee for you.
How to upload files using PHP?
File upload form :
File upload script - upload.php :
$uploaddir = 'data/';
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
echo ""File has been uploaded succesfully.\n"";
} else {
echo ""File could not be uploaded.\n"";
}
?>
The data directory has to be placed in the same directory as the script and it also has to be writeable for group.
"



Print page


