<small id='zQpY4'></small><noframes id='zQpY4'>

    1. <legend id='zQpY4'><style id='zQpY4'><dir id='zQpY4'><q id='zQpY4'></q></dir></style></legend>
    2. <tfoot id='zQpY4'></tfoot>
      1. <i id='zQpY4'><tr id='zQpY4'><dt id='zQpY4'><q id='zQpY4'><span id='zQpY4'><b id='zQpY4'><form id='zQpY4'><ins id='zQpY4'></ins><ul id='zQpY4'></ul><sub id='zQpY4'></sub></form><legend id='zQpY4'></legend><bdo id='zQpY4'><pre id='zQpY4'><center id='zQpY4'></center></pre></bdo></b><th id='zQpY4'></th></span></q></dt></tr></i><div id='zQpY4'><tfoot id='zQpY4'></tfoot><dl id='zQpY4'><fieldset id='zQpY4'></fieldset></dl></div>

          <bdo id='zQpY4'></bdo><ul id='zQpY4'></ul>

        PHP 获取下拉值和文本

        时间:2023-10-03

      2. <i id='phImI'><tr id='phImI'><dt id='phImI'><q id='phImI'><span id='phImI'><b id='phImI'><form id='phImI'><ins id='phImI'></ins><ul id='phImI'></ul><sub id='phImI'></sub></form><legend id='phImI'></legend><bdo id='phImI'><pre id='phImI'><center id='phImI'></center></pre></bdo></b><th id='phImI'></th></span></q></dt></tr></i><div id='phImI'><tfoot id='phImI'></tfoot><dl id='phImI'><fieldset id='phImI'></fieldset></dl></div>

            <bdo id='phImI'></bdo><ul id='phImI'></ul>

            <tfoot id='phImI'></tfoot>

            <legend id='phImI'><style id='phImI'><dir id='phImI'><q id='phImI'></q></dir></style></legend>
          • <small id='phImI'></small><noframes id='phImI'>

                <tbody id='phImI'></tbody>
                  本文介绍了PHP 获取下拉值和文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  <select id="animal" name="animal">                      
                  <option value="0">--Select Animal--</option>
                  <option value="1">Cat</option>
                  <option value="2">Dog</option>
                  <option value="3">Cow</option>
                  </select>
                  
                  if($_POST['submit'])
                  {
                  $animal=$_POST['animal'];
                  }
                  

                  我有一个这样的下拉菜单.我想要什么,我想使用 PHP 在按钮提交中获取选定的值和文本.我的意思是如果它被选中第一个.我想同时获得 1Cat

                  I have a dropdown like this. What I want, I want to get selected value and text in button submit using PHP. I mean if it's selected 1st one. I want to get both 1 and Cat

                  请帮忙.谢谢.

                  推荐答案

                  $animals = array('--Select Animal--', 'Cat', 'Dog', 'Cow');
                  $selected_key = $_POST['animal'];
                  $selected_val = $animals[$_POST['animal']];
                  

                  使用您的 $animals 列表生成下拉列表;你现在可以得到钥匙 &该键的值.

                  Use your $animals list to generate your dropdown list; you now can get the key & the value of that key.

                  这篇关于PHP 获取下拉值和文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Cypher 查询作为 Neo4j 上的批处理操作 下一篇:如何在yii2中制作下拉列表?

                  相关文章

                  最新文章

                  • <bdo id='5GEql'></bdo><ul id='5GEql'></ul>
                • <small id='5GEql'></small><noframes id='5GEql'>

                      <tfoot id='5GEql'></tfoot>
                      <i id='5GEql'><tr id='5GEql'><dt id='5GEql'><q id='5GEql'><span id='5GEql'><b id='5GEql'><form id='5GEql'><ins id='5GEql'></ins><ul id='5GEql'></ul><sub id='5GEql'></sub></form><legend id='5GEql'></legend><bdo id='5GEql'><pre id='5GEql'><center id='5GEql'></center></pre></bdo></b><th id='5GEql'></th></span></q></dt></tr></i><div id='5GEql'><tfoot id='5GEql'></tfoot><dl id='5GEql'><fieldset id='5GEql'></fieldset></dl></div>
                      <legend id='5GEql'><style id='5GEql'><dir id='5GEql'><q id='5GEql'></q></dir></style></legend>