我正在开发一个程序来保存我填写在第一页上的文本框中的数据。但是在第二页上我有一个搜索按钮,如果我填写一个ID或名称,它将从名称和Id接收所有额外的数据。我想把这些数据放在第二页的标签(html)中。
$query="SELECT * from customers WHERE id = '$id'";
现在我想将数据放在一个变量中,然后使用Id / name / value或其他东西将这个变量放在我的html文本框或标签中。
这可能吗?
答案 0 :(得分:1)
我希望您通过查看下面的代码来理解这个概念。您可能希望防止sql注入并使用预处理语句
$sql = "select * from customers where id = '$id'";
$result = mysql_query($conn, $sql);
if($result){
$count = mysqli_num_rows($result);
if($count > 0){
while($row = mysqli_fetch_assoc($result)){
$firstName = $row['firstname'];
echo'
<input type="text" value="$firstname">
';
}
}
}