だから私はちょっとした障害にぶつかりました。私は、画像ファイルを ftp にアップロードし、画像へのリンクと、画像の整理と順序付けに使用される列を含む mysql へのエントリを作成するフォームに取り組んでいます。
次のエラーが表示されます。
SQL 構文にエラーがあります。使用する正しい構文については、MySQL サーバーのバージョンに対応するマニュアルを確認してください。
値の周りに '' を配置しようとしましたが、それでも同じメッセージが表示されます。解決策は簡単だと確信しています。私はただ疲れていて、あまりにも長い間それを見つめていました。ここにコードがあります
<?php
// Configuration - Your Options
$allowed_filetypes = array('.jpg','.gif','.bmp','.png'); // These will be the types of file that will pass the validation.
$max_filesize = 524288; // Maximum filesize in BYTES (currently 0.5MB).
$upload_path = '../tattoo/'; // The place the files will be uploaded to.
$filename = $_FILES['userfile']['name']; // Get the name of the file (including file extension).
$ext = substr($filename, strpos($filename,'.'), strlen($filename)-1); // Get the extension from the filename.
// Check if the filetype is allowed, if not DIE and inform the user.
if(!in_array($ext,$allowed_filetypes))
die('The file you attempted to upload is not the proper format, please submit a .jpg, .gif, .bmp, or .png');
// Now check the filesize, if it is too large then DIE and inform the user.
if(filesize($_FILES['userfile']['tmp_name']) > $max_filesize)
die('The file you attempted to upload is too large. Max file size is 0.5MB');
// Check if we can upload to the specified path, if not DIE and inform the user.
if(!is_writable($upload_path))
die('You cannot upload to the specified directory, please CHMOD it to 777.');
// Upload the file to your specified path.
if(move_uploaded_file($_FILES['userfile']['tmp_name'],$upload_path . $filename))
echo 'Your file upload was successful, view the file <a href="' . $upload_path . $filename . '" title="Your File">here</a><p>'; // It worked.
else
echo 'There was an error during the file upload. Please try again.'; // It failed :(.
// Add picture listing to mysql
//Include database connection details
include('config.php');
//Connect to mysql server
$mysql = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_DATABASE);
if(!$mysql) {
die('Failed to connect to server: ' . mysql_error());
}
mysql_select_db("sonyaopal", $mysql) or die( "Unable to select database" . mysql_error());
$result = mysql_query ( "SELECT count(*) from tattoos" );
$location = '' . $upload_path . $filename . '';
$order = $result+1;
$insListing_sql = "INSERT INTO tattoos (id, location, order) VALUES('',
'".mysql_real_escape_string("$location")."',
'".mysql_real_escape_string("$order")."')";
$insListing_res = mysql_query($insListing_sql, $mysql)
or die(mysql_error($mysql));
?>