基本的に、バックエンドのユーザーがギャラリーの写真をアップロードできるようにするスクリプトを作成しました。スクリプトは、ファイルをサーバーにアップロードしてから、ファイル名と情報をデータベースに投稿することになっています。
ファイルは必ずサーバーにアップロードされますが、何らかの理由でデータベースに投稿されるのはときどきです。うまく動作することもありますが、10 回中 8 回はファイルがアップロードされます。スクリプトは次のとおりです。
<?php
//This is the directory where images will be saved
$target = "images/";
$target = $target . basename( $_FILES['photo']['name']);
//This gets all the other information from the form
$name=$_POST['name'];
$caption=$_POST['caption'];
$pic=($_FILES['photo']['name']);
$live=$_POST['live'];
//Connecting to the database
require_once('../Connections/tim.php');
//Writes the information to the database
mysql_query("INSERT INTO `gallery` VALUES ('$name', '$caption', '$pic', '$live')") ;
//Writes the photo to the server
if(move_uploaded_file($_FILES['photo']['tmp_name'], $target))
{
//Tells you if its all ok
echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded successfully, press back to upload more";
}
else {
//Gives and error if its not
echo "Sorry, there was a problem uploading your file.";
}
?>