我是PHP的初学者,但它对于经验丰富的人来说非常容易,但我努力学习。我只想并排添加按钮,但根据我的代码,这是另一个。
while ($row_all = mysqli_fetch_assoc($result))
{
echo '<form method="post">';
echo '<u>'.$row_all["product_name "].'</u>';
echo ' <button name="add_to_cart" class="btn3"
value='.$row_all['urun_adi'].'
type="submit">'.$row_all["urun_adi"].'</button>';
echo '</form>';
}
CSS代码
.btn3{
position: relative;
top: 150px;
left: 1280px;
width: 150px;
height: 100px;
border:5px solid white;
color:yellow;
font-weight:bold;
font-family:Verdana;
font-size:14px;
background-color: green;
}
答案 0 :(得分:0)
试试这个!在while之外创建表单
echo '<form method="post">';
while ($row_all = mysqli_fetch_assoc($result))
{
echo '<u>'.$row_all["product_name "].'</u>';
echo ' <button name="add_to_cart" class="btn3"
value='.$row_all['urun_adi'].'
type="submit">'.$row_all["urun_adi"].'</button>';
}
echo '</form>';