Nieuw lid |
|
Na mijn poging om delen uit een afbeelding te snijden ben ik tot de conclussie gekomen dat dat niet de methode was, dus ik dacht laten we dan een upload script maken, maar ook daar weer errors tot en met :/
http://www.pcmodders.be/upload/upload.php
mijn code (komt rechtstreeks van php.net)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<FORM ACTION="" METHOD="post" ENCTYPE="multipart/form-data">
<INPUT TYPE="file" NAME="userfile"><BR />
<INPUT TYPE="submit" NAME="submit" VALUE="Upload">
</FORM>
</body>
</html>
<?
//kijken of er een bestand is geselecteerd
// Voor PHP 4.1.0 moet $HTTP_POST_FILES gebruikt worden in plaats van $_FILES.
if (is_uploaded_file($_FILES['userfile']['tmp_name'])) {
copy($_FILES['userfile']['tmp_name'], "afb/");
} else {
echo "Mogelijke aanval gespot: " . $_FILES['userfile']['name'];
}
/* ...of... */
move_uploaded_file($_FILES['userfile']['tmp_name'], "afb/");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <body> <FORM ACTION="" METHOD="post" ENCTYPE="multipart/form-data"> <INPUT TYPE="file" NAME="userfile"><BR /> <INPUT TYPE="submit" NAME="submit" VALUE="Upload"> </FORM> </body> </html> <? //kijken of er een bestand is geselecteerd // Voor PHP 4.1.0 moet $HTTP_POST_FILES gebruikt worden in plaats van $_FILES. copy($_FILES['userfile']['tmp_name'], "afb/"); } else { echo "Mogelijke aanval gespot: " . $_FILES['userfile']['name']; } /* ...of... */ ?>
de map afb/ is gechmod naar 777
|