下拉列表如何连接数据库

下拉列表如何连接数据库,第1张

插入一个数据库控件adodc1,设置connectionstring属性与你的数据库绑定,设置recordsource属性,输入sql语句,比如:

select

姓名

from

数据库

再插入一个combox控件,设置datasource为

adodc1,设置datafiled为

姓名

这样就OK了。

要使用AJAX了, 菜单联动就可以了;

参考如下:

<?php

//require_once('conn.php')  //写个连接数据库的文件 每次包含一下就行了, 而且要写在最上面。

$con = mysql_connect("localhost","root","***")  

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html charset=gb2312" />

<title>无标题文档</title>

</head>

<body>

<select>

<option>-请选择-</option>

<?php

$sql="select CID from course2"

$result=mysql_query($sql)

while($row=mysql_fetch_assoc($result)){

?>

<option value="$row['CID']"><?php echo $row['CID'] ?></option>  //这个值要用php的方法取出来

<?php

}

?>

</select>

</body>

</html>

需要先用ajax的方式获取数据库的记录 作为数组 然后 将数组内容加入的下拉框中作为选项

<head>

<meta charset="utf-8">

<title>无标题文档</title>

<script src="http://code.jquery.com/jquery-1.4.1.min.js" type="text/javascript"></script>

<script>

$(document).ready(funxtion{

    vat list1=$("#test")//获取list对象

    $.get("demo_ajax_load.txt", function(result){ //获取后台数据库记录

    for(var i=0,len=result.row.lengthi<result.rowi++){  // result为返回的json对象row为包含选项的数组

        var o=new Option(result.row[i].text,result.row[i].value)

        list1.appendChild(o)

    }

  },"json")

})

</script>

</head>

<body>

<select id="test">

    <option>1</option>

</select>

</body>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9261969.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-26
下一篇 2023-04-26

发表评论

登录后才能评论

评论列表(0条)

保存