助けが必要です。
以下は、データベースに保存されているすべての画像を取得するコードです。表示されているindex.phpとして保存されたコードの最初のブロックを実行すると、取得した後に透かしを入れたいです。それらの画像を表示する前に。後で透かしを統合することは可能ですか、それとも前にしかできませんか?
<?php
mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("test") or die(mysql_error());
$query = mysql_query("SELECT * FROM images ORDER BY id DESC") or die(mysql_error());
while( $result = mysql_fetch_array($query) ){
$id = $result['id'];
echo "<img src=img.php?id=$id>";
?>
そしてimg.phpで
<?php
mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("test") or die(mysql_error());
$id = $_REQUEST['id'];
$query = mysql_query("SELECT * FROM images WHERE id='$id'") or die(mysql_error());
$image = mysql_fetch_assoc($query);
$image1 = $image['image'];
header('Content-type:image/jpeg');
echo $image1;