我有两个问题:
textbox1.Text = "hello";
中),我尝试了<input type="text" name="name" value="<?php echo $name?> ">
然后在我的php脚本中$name = $myObj['name'];
。还有其他办法吗?非常感谢
答案 0 :(得分:2)
<input type="text" name="name" value="<?php echo $name?>">
要选中复选框,请使用:
<input type="checkbox" name="check" value="1" <?php if($condition==true)echo "checked"?>>
答案 1 :(得分:-1)
如果要检查任何复选框,如果条件满足则使用: `
$i = 1;
<input type="checkbox" name="name-field" value="something" <?php if($i== 1){ echo "checked"; } ?> />
?>