>백엔드 개발 >PHP 튜토리얼 >PHP连接Mysql的实例

PHP连接Mysql的实例

WBOY
WBOY원래의
2016-06-23 14:29:04922검색

 



connect . php title >
head >

/* PHP手册中的PHP连接Mysql的实例 */
php
     /*  连接选择数据库  */    
 
  $link   =   mysql_connect ( " mysql_host " ,   " mysql_user " ,   " mysql_password " )        or  die ( " Could not connect " );  
   print   " Connected successfully " ;    
  mysql_select_db ( " my_database " ) or  die ( " Could not select database " );
     /*  执行 SQL 查询  */     
 
  $query   =   " SELECT * FROM my_table " ;   
  $result   =   mysql_query ( $query ) or  die ( " Query failed " );  
 
   /*  在 HTML 中打印结果  */   
 
  print   "

\n " ;   
  while  ( $line   =   mysql_fetch_array ( $result ,  MYSQL_ASSOC))
 {       
    print   " \t\n " ;       
    foreach  ( $line   as   $col_value ) 
   { 
      print   " \t\t\n " ;   
   }       
    print   " \t\n " ;    
  }    
  print   "
$col_value
\n " ;
 
   /*  释放资源  */
    
  mysql_free_result ( $result );    
 
  /*  断开连接  */    
 
  mysql_close ( $link );
?>
 
body >

 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.