私は初めてPHPをやっていて、これについて研究していますが、喜びではありません。基本的に、PHPMyAdminデータベースから画像を取得して、作成したWebページにアップロードしようとしています。すべての見出しとテキストは、画像とは別に意図したとおりに表示されています。
データベースから画像を取得しているコード
<?php
include 'config.php';
include 'opendb.php';
$getdestinationdetails = mysql_query("SELECT *
FROM tbldestinations
WHERE destinationid = $_GET[destinationid]");
while($row = mysql_fetch_array($getdestinationdetails))
{
echo "<h1>Visit " . $row['destinationname'] . "</h1>".
"<imgsrc = 'images" . $row['destinationimage'] . "' />" .
"<br />
<br />" .
$row['destionationdesc'] .
"<br />
<br />
Our holidays include:
<ul>
<li>Luxury coach travel from Shipley Town Centre</li>
<li>Bed and Breakfast at a top hotel</li>
<li>Free tea and coffee on board your coach</li>
<li>The services of an experienced courier</li>
<li>Free complimentary glass of champagne upon arrival at your hotel</li>
</ul>
<center><h2>Don't delay, book today!</h2></center>";
}
include 'closedb.php';
?>
私はすべての実験を試みましたが、すべて無駄でした。ヒントや提案をいただければ幸いです。前もって感謝します