gpt4 book ai didi

php - 如何使用 HTML 和 PHP 在字段的下拉列表中添加新项目?

转载 作者:行者123 更新时间:2023-11-29 20:52:41 24 4
gpt4 key购买 nike

我有一个包含国家/地区下拉列表的网页,我想添加一个选项,如果用户找不到他/她的国家/地区,那么他可以添加他/她的国家/地区名称,并且该国家/地区名称应添加到数据库中存储所有国家/地区名称的表。

<?php
include("config.php");
$query="select name from country";
$result=mysqli_query($dbconn,$query);

?>

<html>
<head>
<title>REGISTRATION</title>

</head>
<body>
<form action="registration.php" method="POST">
<br>
name : <input type="text" name="name"/>
<br>
age : <input type="number" name="age" min="10"/>
<br>
gender :
<br>
<input type="radio" name="gender" value="male" checked> Male
<br>
<input type="radio" name="gender" value="female"> Female
<br>
<input type="radio" name="gender" value="other"> Other
<br>
Email ID : <input type="email" name="email"/>
<br>
COUNTRY :
<select>
<?php while($row = mysqli_fetch_array($result)):;?>
<option><?php echo $row[name];?></option>
<?php endwhile;?>
</select>
<br>
username : <input type="text" name="username"/>
<br>
password : <input type="password" name="password1"/>
<br>
re-enter password : <input type="password" name="password2"/>
<br>
<input type="submit" value="Submit"/>
</form>
</body>
</html>

最佳答案

这里有语法错误,请使用引号

 <?php while($row = mysqli_fetch_array($result)):?>
<option><?php echo $row['name'];?></option>
<?php endwhile;?>

关于php - 如何使用 HTML 和 PHP 在字段的下拉列表中添加新项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37904568/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com