码迷,mamicode.com
首页 > 数据库 > 详细

php示例代码之 使用PHP的MySQL标准函数

时间:2016-07-09 14:55:30      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:

<?php 
  //连接参数
  $host="localhost";
  $user="root";
  $pwd="111111";
  $db="test";
  
  $linkID =mysql_connect($host,$user,$pwd); //创建一个mysql连接
  
  if(!$linkID){
  	echo "<font color=‘red‘>unable to connect!</font>";
  }
  
  mysql_select_db($db)or die("unable to select database"); //选择一个数据库
  
  $SQL_SELECT_SYMBOLS="select * from symbols"; 
  
  $result=mysql_query($SQL_SELECT_SYMBOLS)or die("error in query :$query. ".mysql_errno()); //执行SQL语句
  
  if(mysql_num_rows($result)>0){
  	echo ‘<table cellpadding="10" border="1">‘;
  	echo ‘<tr><th>id</th><th>country</th><th>animal</th><th>cname</th></tr>‘;
  	 while($row=mysql_fetch_row($result)){
  	 	echo "<tr>";
  	 	echo "<td>".$row[0]."</td>";
  	 	echo "<td>".$row[1]."</td>";
  	        echo "<td>".$row[2]."</td>";
  	        echo "<td>".$row[3]."</td>";
  	 	echo "</tr>";
  	 }
  	 echo "</table>";
  }
  else{
  	echo "记录未找到!";
  }
  
  mysql_free_result($result); //释放记录集所占用的内存
  
  mysql_close($linkID); //关闭数据库连接
?>

 技术分享

php示例代码之 使用PHP的MySQL标准函数

标签:

原文地址:http://www.cnblogs.com/webenh/p/5655684.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!