<?php $con = mysql_connect(SAE_MYSQL_HOST_M.':'.SAE_MYSQL_PORT,SAE_MYSQL_USER,SAE_MYSQL_PASS); mysql_select_db("app_XXX", $con) or die("选择数据库失败"); ?>
Save the above code as conn.php,
In other pages: include("conn.php");
The above introduces how to use PHP to connect to MySQL on SAE, including the relevant aspects. I hope it will be helpful to friends who are interested in PHP tutorials.