Home > Backend Development > PHP Tutorial > An example of PHP accessing MySQL database_PHP tutorial

An example of PHP accessing MySQL database_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-21 16:02:05
Original
811 people have browsed it



PHP+MySQL 例子


请在文本区域输入数据并且确定






  

  $connect_id=mysql_connect("localhost","username","password");
  if(isset($txt)) {
     $dbtime=date("Y-m-d H:i:s");
     mysql_db_query("usernamedb","insert into test values (0,'$dbtime','$txt')");
  }
?>







  $result=mysql_db_query("usernamedb","select * from test");
  while($userdb=mysql_fetch_row($result))
  {
     echo "<".$userdb[0].">:      ".$userdb[1]."     ".$userdb[2]."
n";
  }
   mysql_close($connect_id);
?>



  

【本文版权归作者与奥索网共同拥有,如需转载,请注明作者及出处】    


www.bkjia.comtruehttp://www.bkjia.com/PHPjc/316644.htmlTechArticlebody center h2PHP+MySQL 例子/h2 h3ufont color=brown请在文本区域输入数据并且确定 /font/u/h3 form action=? echo $PHP_SELF? method=POST textarea cols=40 rows=5 name=txt...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template