php连接数据库实现简单查询_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > php连接数据库实现简单查询

php连接数据库实现简单查询

 2015/4/12 17:36:05  董子敬  程序员俱乐部  我要评论(0)
  • 摘要:吼吼,刚学,记录一下~1.首先新建数据库,在里面新建数据表test,任意插进去了两条记录如图所示2.新建php文件。连接数据库的代码:$conn=mysql_connect("localhost","root","");//连接数据库服务器if(!$conn){die('Couldnotconnect:'.mysql_error());}mysql_select_db("mytest",$conn);//选择数据库mytetstmysql_query("setnamesutf8")
  • 标签:PHP 实现 数据库 数据 连接

吼吼,刚学,记录一下~

1.首先新建数据库,在里面新建数据表test,任意插进去了两条记录如图所示

2.新建php文件。

? 连接数据库的代码:

?

class="php">$conn=mysql_connect("localhost","root","");//连接数据库服务器
	if (!$conn){
	  	die('Could not connect: ' . mysql_error());
	}
	mysql_select_db("mytest",$conn);//选择数据库mytetst
	mysql_query("set names utf8");//设置编码格式

?mysql_connect(servername,username,password);

servername 可选。规定要连接的服务器。默认是 "localhost:3306"。 username 可选。规定登录所使用的用户名。默认值是拥有服务器进程的用户的名称。 password 可选。规定登录所用的密码。默认是 ""。

?3.执行数据库的语句,例如查询语句

$arr=mysql_query("select * from test",$conn);

? ?输出查询结果

       while($row = mysql_fetch_array($arr)){
		echo $row['id'] . " " . $row['num'];
		echo "<br />";
	}

?

————————————————————————————————————————

?

?实现结果:

当点击查找全部时,显示:

?按id查找时,输入1显示:

?完整代码:

<html>
<head>
<style type="text/css" >
	#result{
		text-align:center;
		margin: auto; 
		width:500px;
		border-collapse: collapse;
	}
	#result td{
		
		width: 100px;
		border:2 solid black;
	}

</style></head>
<body>
	<form action="" method="post" name="form">
		<table align="center">
			<tr><td colspan="2">
				<input type="submit" value="查找全部" name="select_all">
			</td></tr>
			<tr><td>
				按id号查找:<input type="text" value="" name="select_index">
			</td><td>
				<input type="submit" vaue="确认" name="select_sure">
			</td></tr>
		</table>
	</form>
<div>
<?php
	$conn=mysql_connect("localhost","root","");
	if (!$conn)  die('Could not connect: ' . mysql_error());
	mysql_select_db("mytest",$conn);
	mysql_query("set names utf8");
	echo "<table id='result' >";

	echo "<tr><td>id</td><td>num</td><td>name</td><td>sex</td><td>bithday</td></tr>";
	
	if(isset($_POST['select_all'])){
		$arr=mysql_query("select * from test",$conn);

		while($row = mysql_fetch_array($arr)){
			echo "<tr><td>{$row['id'] }</td><td>{$row['num']} </td><td>{$row['name']} </td><td>{$row['sex']} </td><td>{$row['birthday']}</td></tr>";
			// echo $row['id'] . " " . $row['num'];
			// echo "<br />";
		}
	}else if (isset($_POST['select_sure'])) {
		$id=$_POST['select_index'];
		$arr=mysql_query("select * from test where id=$id",$conn);
		if($row=mysql_fetch_assoc($arr)){
			//如果查询的到
			echo "<tr><td>{$id}</td><td>{$row['num']} </td><td>{$row['name']} </td><td>{$row['sex']} </td><td>{$row['birthday']}</td></tr>";
		}	
	}
	echo "</table>";
	mysql_close($conn);
?>
 </div>
</body>
</html>

?

?

?

  • 大小: 3.3 KB
  • 大小: 8.5 KB
  • 大小: 7.2 KB
  • 查看图片附件
发表评论
用户名: 匿名