Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Upload txt

Parašė bad_user· 2008 Kov. 1 18:03:10
#6

Galiu duoti tokį paprasta... Jis net į mysql nerašis ;)

<html>
<head>
<title>Untitled</title>
</head>

<body>
<form name="form1" method="post" action="" enctype="multipart/form-data">
<input type="file" name="imagefile">
<br>
<input type="submit" name="Submit" value="Submit">
<?
if(isset( $Submit ))
{
//If the Submitbutton was pressed do:
if ($_FILES['imagefile']['type'] == "image/gif"){
copy ($_FILES['imagefile']['tmp_name'], "images/".$_FILES['imagefile']['name'])
or die ("Could not copy");
echo "";
echo "Name: ".$_FILES['imagefile']['name']."";
echo "Size: ".$_FILES['imagefile']['size']."";
echo "Type: ".$_FILES['imagefile']['type']."";
echo "Copy Done....";
}
else {
echo "<br><br>";
echo "Could Not Copy, Wrong Filetype (".$_FILES['imagefile']['name'].")<br>";
}
}
?>
</form>
</body>
</html>

Redagavo bad_user· 2008 Kov. 1 18:03:45