如何将MYSQL数据库中查到的数据绑定到HTML页面的对应文本框中? 30
假设数据库中取出的字段为:id=2;name="aaa"html页面文本框为:<inputtype="text"id="id"name="id"><inputtype="...
假设数据库中取出的字段为:id=2;name="aaa"
html页面文本框为:<input type="text" id="id" name="id">
<input type="text" id="name" name="name">
Jquery,JS实现,是HTML页面,不是PHP,也不是JSP
急求!能用的话追加30分 展开
html页面文本框为:<input type="text" id="id" name="id">
<input type="text" id="name" name="name">
Jquery,JS实现,是HTML页面,不是PHP,也不是JSP
急求!能用的话追加30分 展开
2个回答
展开全部
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style>
table{text-align:center;color:#666;}
th,td{font-size:20px;border:1px solid #666;border-collapse:collapse;background:#56aaff}
</style>
</head>
<body>
<?php
$conn=mysql_connect("localhost","","");//链接服务器
mysql_select_db("",$conn);//选择数据库test并链接
mysql_query("set names 'utf8'");//编码
//if(!$conn){die('error:'.mysql_error());}//判断是否链接出错
$sql="select id,name from biaoming where id="2"";//sql语句
$result=mysql_query($sql);//执行并获取sql查询结果
$row=mysql_fetch_array($result)
document.getElementById(id).value=$row["id"];
document.getElementById(name).value=$row["name"];
mysql_close($conn);//断开数据库链接
?>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style>
table{text-align:center;color:#666;}
th,td{font-size:20px;border:1px solid #666;border-collapse:collapse;background:#56aaff}
</style>
</head>
<body>
<?php
$conn=mysql_connect("localhost","","");//链接服务器
mysql_select_db("",$conn);//选择数据库test并链接
mysql_query("set names 'utf8'");//编码
//if(!$conn){die('error:'.mysql_error());}//判断是否链接出错
$sql="select id,name from biaoming where id="2"";//sql语句
$result=mysql_query($sql);//执行并获取sql查询结果
$row=mysql_fetch_array($result)
document.getElementById(id).value=$row["id"];
document.getElementById(name).value=$row["name"];
mysql_close($conn);//断开数据库链接
?>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询