需要帮助通过会话数组将标签文本传递到另一个页面,我也尝试发布单选按钮值,但问题是单选按钮值没有显示到另一个页面?
索引页面 PHP 功能
<?php
session_start();
if (isset($_REQUEST['demo'])) {
$_SESSION['size'] = array('Small', 'Medium');
}
?>
$(document).ready(function () {
$('.form-radios label').attr('checked', 'unchecked');
$(".form-radios label").click(function(){
$(this).attr('checked', 'checked').addClass('checked');
$('label').not(this).removeClass('checked');
});
});
</script>
索引页表格
<form action="page2.php" method="post">
<div class="form-radios">
<input type="radio" name="size" id="size" value="Small" />
<label for="size">Small</label>
<input type="radio" name="size" id="size" value="medium"/>
<label for="size">Medium</label>
<input type="radio" name="size" id="size" value="large"/>
<label for="size">Large</label>
<input type="radio" name="size" id="size" value="xl"/>
<label for="size">Xl</label>
</div><br />
<input type="submit" name="demo" value="submit" />
</form>
第2页功能
<?php
session_start();
echo $sizes=$_SESSION['size'];
?>
<input type="text" value="<?php echo $sizes ?>" />