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>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…