imagecreatefromjpeg を使用する PHP スクリプト (以下) があり、動作します。次に、いくつかの mysql ステートメントを追加しましたが、機能しなくなりました (壊れた画像のアイコンが表示されます)。
imagecreatefromjpeg と関連する mysql クエリを混在させるにはどうすればよいですか。ありがとう!
<?php
//Report any errors
ini_set ("display_errors", "1");
error_reporting(E_ALL);
$user="root";
$password="pw";
$database="piwigo";
//Adding these two lines breaks the image:
//mysql_connect(localhost,$user,$password);
//@mysql_select_db($database) or die( "Unable to select database");
$current_image = imagecreatefromjpeg("sample.jpg");
// place code for saving the montage image as a file or outputting to the
// browser here.
header("Content-type: image/jpeg");
imagejpeg($current_image);
imagedestroy($current_image);
mysql_close();
?>