如何发布以下开关按钮的值

时间:2018-08-24 14:11:27

标签: php html css

完整代码在这里:https://codepen.io/asmoun0801/pen/mGegjw

<div class="">
    <p>Certifiée :</p>
    <!-- Rounded switch -->
    <label class="switch">
        <input type="checkbox">
        <span class="slider round"></span>
    </label>
</div>

2 个答案:

答案 0 :(得分:0)

如果我做对了,应该将<input>元素放在

<form method="POST" action=""> ... </form> 

元素,以便能够将其发布到PHP服务器。另外,您应该设置输入字段的名称属性。

答案 1 :(得分:0)

css:https://codepen.io/asmoun0801/pen/eLJOXg 解决方案html:

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<?php  if(isset($_POST['cert'])){
 echo $cert[0] ;
 }   
?>
<form action="action.php"  method="post">
<div class="">
<p>Certifiée :</p>
<!-- Rounded switch -->
<label class="switch">
<input type="checkbox" name="cert[]" value="true">
<span class="slider round"></span>
</label>
</div>
</form>
</body>
</html>