欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php 连接数据库并显示所要的数据

程序员文章站 2022-04-22 15:52:40
...
这是一篇php入门教程,讲得就是关于php 连接数据库并显示所要的数据,也就是简单的php+mysql数据库在web网页上的应用实例了,代码如下:
";
    exit;
}
if (!$Result_ID = mysql_query($Query)) {
    print "Query Error: " . mysql_error();
    exit;
}
while ($Result = mysql_fetch_row($Result_ID)) {
    print "------------------
"; print "$Result[0]
"; print "$Result[1]
"; print "$Result[2]
"; print "$Result[3]
"; print "-------------------
"; }


本文地址:

转载随意,但请附上文章地址:-)