在数据库php和android中存储单选按钮字段

时间:2018-03-12 06:54:29

标签: php android mysql

我在Android应用程序中有单选按钮,在注册步骤中 他的名字:user_type(学生或者teatcher)

我想将{ "notes": [ { "RELEASE_VERSION": "0.1.1", "RELEASE_DATE": "01 Mar 2018", "RELEASE_NOTE": [ "General bug fixes" ] }, { "RELEASE_VERSION": "0.1.0", "RELEASE_DATE": "01 Feb 2018", "RELEASE_NOTE": [ "Initial Launch" ] } ] } 存储在我的数据库中 我使用mysql和php连接它们之间

所以在user_type (Student or teacher)

在php中,我该怎么办? 我应该像普通字段(文本框)一样定义这个字段吗? 像这样

mysql create field name user_type

并在查询中

 $user_type = $_POST['user_type'];

1 个答案:

答案 0 :(得分:1)

使用getText()获取单选按钮文本,并将其以文本或字符串格式保存在数据库中,并按如下方式检索:

if(user_type.equals("student"){

 }else if (user_type.equals("teacher"){

}