• <tfoot id='LqW7I'></tfoot>

    <legend id='LqW7I'><style id='LqW7I'><dir id='LqW7I'><q id='LqW7I'></q></dir></style></legend>
    1. <small id='LqW7I'></small><noframes id='LqW7I'>

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

        如何使用 php 预先选择一个 html 下拉列表?

        时间:2023-10-03

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

        <tfoot id='qjYla'></tfoot>

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

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

                <tbody id='qjYla'></tbody>
                  <legend id='qjYla'><style id='qjYla'><dir id='qjYla'><q id='qjYla'></q></dir></style></legend>
                1. 本文介绍了如何使用 php 预先选择一个 html 下拉列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在尝试使用 PHP 选择该选项,但我没有任何想法!

                  I am trying to get the option selected using PHP, but I ran out of ideas!

                  以下是我迄今为止尝试过的代码:

                  Below is the code I have tried until now:

                  <select>
                  <option value="1">Yes</options>
                  <option value="2">No</options>
                  <option value="3">Fine</options>
                  </select>
                  <input type="text" value="" name="name">
                  <input type="submit" value="go" name="go">
                  

                  那我该怎么办?

                  推荐答案

                  程序员很懒惰......呃......高效......我会这样做:

                  Programmers are lazy...er....efficient....I'd do it like so:

                  <select><?php
                      $the_key = 1; // or whatever you want
                      foreach(array(
                          1 => 'Yes',
                          2 => 'No',
                          3 => 'Fine',
                      ) as $key => $val){
                          ?><option value="<?php echo $key; ?>"<?php
                              if($key==$the_key)echo ' selected="selected"';
                          ?>><?php echo $val; ?></option><?php
                      }
                  ?></select>
                  <input type="text" value="" name="name">
                  <input type="submit" value="go" name="go">
                  

                  这篇关于如何使用 php 预先选择一个 html 下拉列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:ajax php 下拉列表 下一篇:symfony2 - 从数据库中添加选择

                  相关文章

                  最新文章

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

                  <tfoot id='BG8s1'></tfoot>
                2. <small id='BG8s1'></small><noframes id='BG8s1'>

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