这是代码。 editor.php是链接。 photo_id是我要传递的信息。 $ photo ['picture']就是照片。
print ('<a href="editor.php?photo_id='.$photo['id'].'"><img src='{$photo['picture']}'.'</a>'./>');
答案 0 :(得分:0)
只需使用session_start();
并在$_SESSION['last_link'];
中添加链接,然后在下一页上使用相同的功能,并访问您在$_SESSION['last_link']
中输入的值,以获取有关照片和显示它。
或者,如果您使用了这种类型的链接,则在editor.php
中,您可以使用$_GET['photo_id']
获取照片的ID,然后在用户点击图片后点按链接。< / p>
编辑1: 您可以尝试使用正确的连接:
试试这个:
echo '<a href="editor.php?photo_id='.$photo['id'].'"><img src='.$photo['picture'].' /></a>';