Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
736 views
in Technique[技术] by (71.8m points)

hyperlink from select form with method get to html (php,mysql)

i need to link a select form to "country_data.php" from "index.php" by GET method's. i'm using php_mysqli connection importing a countries list into index.php form. but i wish to set a hyperlink to each row (country) of the list and send the Code(country.table)TO "country_data.php" and show Name(country) in the index.php list. my code try to list-import countries but LINK doesnt work, niether _GET, i appreciate it!

enter code here
<tr>
  <form target="_blank" action="country_data.php"  method ="get">
    <td colspan="2"><p>Count:</p>             
        <select name="id" size="11" >           
         <option selected="selected">--Select Country--</option>
          <?php
            while($datos = mysqli_fetch_array($sql_select)):
            ?>  
              <a href="country_data.php">
              <option value="<?php echo $datos[1]?>"><?php echo $datos[1]?></option>
              </a>
             <?php endwhile;?>           
        </select>            
    </td>
    </form>
  </tr>

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...