私はphpとJavaScriptが初めてなので、助けていただければ幸いです!以下はphpコードです!データベースからデータを取得し、写真と写真のタイトルを表示します。私がやりたいのは、この写真の 1 つをクリックすると、新しい php expe: photo.php が開き、他の写真ではなく同じ写真だけを見ることができるということです。
<?php
$link = mysql_connect("localhost", "root","");
mysql_select_db("test", $link);
$query = "select * from post order by id DESC;";
$results = mysql_query($query, $link) or die ("you comand can't be executed!".mysql_error());
if($results){
$i = 1;
while ($row = mysql_fetch_assoc($results)){
echo $row['title']. "<img src=/1/" . $row['location']. " width=580px > " . "<br /><br /><br />";
}
}
?> '