Home  >  Article  >  Backend Development  >  make me cry make me smile An example of PHP accessing MySQL database

make me cry make me smile An example of PHP accessing MySQL database

WBOY
WBOYOriginal
2016-07-29 08:34:421171browse



PHP+MySQL 例子


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






  

  $c
  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);
?>



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

以上就介绍了make me cry make me smile PHP 存取 MySQL 数据库的一个例子,包括了make me cry make me smile方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

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