我需要让用户检查复选框值并打印它们。
目前我正在做的是下面但我不知道该怎么写表格
的行动脚本<form id="shop" method="POST" action="">
<section id="latest" class="last clear">
<article class="one_quarter">
<figure><img src="images/g1.jpg" width="215" height="100" alt="">
<figcaption>
Value : $100 <br />
Price : $75.00
<input type="checkbox" name="one" />
<br />
<footer class="more"><a href="#">Read More »</a></footer>
</figcaption>
</figure>
</article>
<article class="one_quarter">
<figure><img src="images/g2.jpg" width="215" height="100" alt="">
<figcaption>
Value : $100 <br />
Price : $82.00
<input type="checkbox" name="two" />
<br />
<footer class="more"><a href="#">Read More »</a></footer>
</figcaption>
</figure>
</article>
答案 0 :(得分:0)
在同一目录中创建类似“result.php”的文件
为“result.php”执行操作
result.php:
if(isset($_POST["one"])){
echo $_POST["one"];
}
if(isset($_POST["two"])){
echo $_POST["two"];
}