Home > php教程 > php手册 > body text

PHP 存取 MySQL 数据库的一个例子

WBOY
Release: 2016-06-21 09:07:36
Original
1231 people have browsed it

mysql|数据|数据库



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[1]." ".$userdb[2]."
n";
}
mysql_close($connect_id);
?>



Related labels:
source:php.cn
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template