PHP与MySQL交互使用详解
PHP与MySQL交互使用详解 1、创建自动连接数据库的代码,并生成一些必要的代码.我们仔细研究一下数据库的连接函数,会发现是这样的一行代码。 $link_id=@mysql_connect($hostname,$username,$password); 所以我们在include文件connect.inc中添加以下代码就可以了。connect.inc<?php$hostname=’localhost’; $username=’phpstar’;$password=’phpstar’;$dbname=’script’; $tablename=’php_script’;$link_id=my
用户评论