我想知道如何使用jquery驗證和發佈圖片上傳論壇。只有兩個輸入:標題和圖像。如果任何這些字段爲空或上傳的文件格式不正確,我需要提供一個錯誤。這裏是你不能檢查與jQuery的文件中的代碼我有(這是不是目前使用jQuery)使用jQuery驗證和發佈
Image.php
<?php
$uploadDir = 'images/'; //Image Upload Folder
if(isset($_POST['Submit']))
{
$title = mysql_real_escape_string($_POST['title']);
$fileName = $_FILES['Photo']['name'];
$tmpName = $_FILES['Photo']['tmp_name'];
$fileSize = $_FILES['Photo']['size'];
$fileType = $_FILES['Photo']['type'];
$filePath = $uploadDir . $fileName;
$result = move_uploaded_file($tmpName, $filePath);
if (!$result) {
echo "Error uploading file";
exit;
}
if(!get_magic_quotes_gpc())
{
$fileName = addslashes($fileName);
$filePath = addslashes($filePath);
}
$query = "INSERT INTO images(title,image) VALUES ('".$title."','".$filePath."')";
mysql_query($query) or die (mysql_error());
}
?>
<form name="Image" enctype="multipart/form-data" action="image.php" method="POST">
<input type="text" name="title" id="title" value=""><br/><br/>
<input type="file" name="Photo" size="20" accept="image/gif, image/jpeg, image/x-ms-bmp, image/x-png"><br/>
<INPUT type="submit" class="button" name="Submit" value=" Submit ">
</form>
感謝做u如何使它檢查一個以上的文件類型。像jpg和gif –
我已更新代碼來檢查gif或jpg。 –