我想将所选广播的值传递给另一个页面
<div>
<input type="radio" name="radio" id="return" value="return" />
<label for="return">Retour</label>
</div>
<div>
<input type="radio" name="radio" id="oneway" value="oneway" checked />
<label for="oneway">Enkel</label>
</div>
</div>
<div class="form-group right">
<button type="submit" class="btn medium black">Bereken rit</button>
</div>
我在php中使用post方法,输入类型与value="<?php echo $_POST['name']; ?>"
但单选按钮没有,我该如何解决?
哪一个更好地传递数据,PHP或Javascript? 提前致谢
答案 0 :(得分:1)
快速解决方案
<?php
$checked=isset($_POST["radio"]) && $_POST["radio"]==="oneway"?"checked":"";
?>
<input type="radio" name="radio" id="oneway" value="oneway" <?php echo $checked;?> />
但实际上你应该使用像smarty或twig或mustache等模板引擎将逻辑与模板分开......