echo "<img src=\"{$recipe['image']}\" height=100 width=100 /><br />";
echo '<form action="php/recipe.php?id='.$recipe_id.'" method="POST">';
echo '<input id="search" name="Look" type="Submit" value="Look" >';
echo '</form>';
如何使用图像src而不是按钮来使用此表单操作?
答案 0 :(得分:1)
在此处尝试锚标记<a>
,因为当您点击该图片时,它会重定向到recipe.php
页面,您将获得recipe_id
echo "<a href='php/recipe.php?id=$recipe_id'><img src=\"{$recipe['image']}\" height=100 width=100 /></a><br />";