PHP网站调用mysql数据库的方法
1.连接数据库
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
// some code
?>
2.使用mysql_select_db()函数选择数据库
mysql_select_db("school",$con)
3.使用mysql_query()函数即可调用mysql数据库中的数据
#result = mysql_query("select * form teacher");
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: instr函数mysql怎么写