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

An example of PHP accessing MySQL database_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 16:02:05750browse



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:
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