php 连接mysql 数据库,以下是源码示例:
其中('localhost','root','root') 分别指ip,mysql 用户名、密码
yi:表示连接的数据库名
以下源码主要实现的是查询数据库表user中是否含有username=xujinna的列
其中('localhost','root','root') 分别指ip,mysql 用户名、密码
yi:表示连接的数据库名
以下源码主要实现的是查询数据库表user中是否含有username=xujinna的列
<?php
$conn=mysql_connect('localhost','root','root') or die("connect error");
mysql_select_db('yi',$conn) or die ("db connect error");
$username="xujinna";
$url="http://172.22.172.27:8085/lxr";
$sql="select * from user where username='$username'";
$query=mysql_query($sql);
$row=mysql_num_rows($query);
if($row>0){
echo "Welcome to visit Code Search!";
header("location:".$url);
}
else{
echo "<h1><b>Sorry,You don't hava permission to visit.</b></h1>";
}
?>