语言:OO PHP 5+ DB:MySQL
我试图通过获取它们的值然后插入MySQL数据库,使用单选按钮从表单中插入数据。我可以在使用文本字段来收集数据的表单上插入任何内容,但是当我尝试插入单选按钮的值时,插入只会将相应的数据库字段留空。我在我的Insert语句中使用它作为参数(这些字段在类的顶部分配):
$this -> myTextfield // this works
$this -> myRadioButtonValue // this doesn't seem to grab the value as it inserts a blank entry.
非常感谢帮助。
GF
答案 0 :(得分:1)
确保您已为单选按钮指定了value
属性,例如:
<input type="radio" name="somename" value="my value goes here !" />