下拉列表如何连接数据库

下拉列表如何连接数据库,第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/htmlcharset=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>

我的采用的是javabena+jsp

一个javabean

public ArrayList selectCourseInfo()throws Exception {//下拉框显示课程信息

ArrayList list = new ArrayList()

try {

db.open()

ResultSet rs = db.select("select * from CourseInfo")

while (rs.next()) {

list.add(new CourseInfo(rs.getInt(1), rs.getString(2),rs.getString(3)))

}

} catch (Exception e) {

e.printStackTrace()

} finally {

db.close()

}

return list

}

然后在jsp中调用

<tr><td>课 程:<select name="course">

<%try{

ArrayList list=m.selectCourseInfo()

if(list.isEmpty()){

out.println("没有数据显示")

}

for(int i=0i<list.size()i++){

CourseInfo c=(CourseInfo)list.get(i)%>

<option><%=c.getName()%></option>

<%}}

catch(Exception e){}

%></select>

</td></tr>

这样就可以动态的显示了


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存