将值从下拉列表插入MySQL表

时间:2017-08-01 22:24:44

标签: php mysql

我正在尝试将值从下拉列表插入到我的数据库表中 它实际上是注册的,但只显示了两个字母,如图所示。

enter image description here

// These rules grant access to a node matching the authenticated
// user's ID from the Firebase auth token
{
  "rules": {
    "users": {
      "$user_id": {
        ".read": "$user_id === auth.uid",
        ".write": "$user_id === auth.uid"
      }
    }
  }

2 个答案:

答案 0 :(得分:0)

该选项的'value'属性是提交给PHP的。如果你想要整个单词,你应该把它作为你的价值!

答案 1 :(得分:0)

<form method="post" action="#" role="login" id="formID" >
    <select name="states" id="state" required class="form-control input-lg">
        <option value="" selected="selected">select an option</option>
        <option value="ADRAR">ADRAR</option>
        <option value="AIN DEFLA">AIN DEFLA  </option>
    </select>
</form>

如果您需要插入全文,请将值替换为选项文本。