Görüntüler için bir php yükleme komut dosyası inşa ediyorum ve tüm çalıştırmak için reddediyor.
Öncelikle, böyle basit bir mesaj formu var:
<form action="variables.php" method="post" enctype="multipart/form-data" >
<p>Event title : <input type="text" name="name" required></p>
<p>Description : <input type="text" name="description" required></p>
<input type="file" name="file" id="file"/>
<input type="submit" value="submit">
</form>
Bu daha sonra, bu gibi görünüyor "variables.php" na sunulan alanları besler:
<?php
require("myfunctions.php");
$title = $_POST['name'];
$description =$_POST['description'];
$img = $_FILES["file"];
imgput($img);
generator($title, $description);
?>
"Imgput" ve "jeneratör" "myfunctions.php" dan fonksiyonları, ama sorun bu yüzden burada "myfunctions.php" şuna benziyor, "genrator" değil:
<?php
function imgput($img) {
if ((($img["type"] == "image/gif")
|| ($img["type"] == "image/jpeg")
|| ($img["type"] == "image/pjpeg"))
&& ($img["size"] < 500000))
{
if ($img["error"] > 0)
{
echo "Return Code: " . $img["error"] . "<br />";
}
else
{
echo "Upload: " .$img["name"] . "<br />";
echo "Type: " . $img["type"] . "<br />";
echo "Size: " . $img["size"] / 1024) . " Kb<br />";
echo "Temp file: " . $img["tmp_name"] . "<br />";
if (file_exists("../uploads/" . $img["name"]))
{
echo $img["name"] . " already exists. ";
}
else
{
move_uploaded_file($img["tmp_name"],
"../uploads/" . "event1.jpg");
echo "Stored in: " . "../uploads/event1.jpg";
}
}
}
else
{
echo "Invalid file";
}
}
?>
Herhangi bir yardım büyük olurdu. Birazdan "imgput" başladıktan sonra testi yankılanırken çalıştıran çalıştı, ama o bile çalışmaz.