-
Notifications
You must be signed in to change notification settings - Fork 27
/
conn.php
64 lines (61 loc) · 1.58 KB
/
conn.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
//数据库链接文件
$host='localhost';//数据库服务器
$user='root';//数据库用户名
$password='123456';//数据库密码
$database='phpjiudian';//数据库名'
$conn=@mysql_connect($host,$user,$password) or die('数据库连接失败!');//连接数据库
@mysql_select_db($database) or die('没有找到数据库!');//选择数据库
mysql_query("set names 'gb2312'");//设置编码格式
function getoption($ntable,$nzd)
{
$sql="select ".$nzd." from ".$ntable." order by id desc";
$query=mysql_query($sql);//执行sql
$rowscount=mysql_num_rows($query);//获得结果集的行的数目
if($rowscount>0)//判断结果集的个数
{
for ($fi=0;$fi<$rowscount;$fi++)//循环结果集
{
?>
<option value="<?php echo mysql_result($query,$fi,0);?>"><?php echo mysql_result($query,$fi,0);?></option>
<?php
}
}
}
function getoption2($ntable,$nzd)
{
?>
<option value="">请选择</option>
<?php
$sql="select ".$nzd." from ".$ntable." order by id desc";
$query=mysql_query($sql);
$rowscount=mysql_num_rows($query);
if($rowscount>0)
{
for ($fi=0;$fi<$rowscount;$fi++)
{
?>
<option value="<?php echo mysql_result($query,$fi,0);?>" <?php
if($_GET[$nzd]==mysql_result($query,$fi,0))//如果get的参数等于搜索的结果输出selected
{
echo "selected";
}
?>><?php echo mysql_result($query,$fi,0);?></option>
<?php
}
}
}
function getitem($ntable,$nzd,$tjzd,$ntj)
{
if($_GET[$tjzd]!="")
{
$sql="select ".$nzd." from ".$ntable." where ".$tjzd."='".$ntj."'";
$query=mysql_query($sql);
$rowscount=mysql_num_rows($query);
if($rowscount>0)
{
echo "value='".mysql_result($query,0,0)."'";
}
}
}
?>