我最近将我的数据库从localhost迁移到了Google Cloud。我遵循了this教程,因为它最符合我的需求(之前正在运行XAMPP)。
所以现在我在云中运行了一个LAMP实例。在我的config.php中,我有;
/**
* Database config variables
*/
$link = mysqli_connect("localhost", "root", "xxxxx");
mysqli_select_db($link, "db");
此配置设置正确。 当我尝试(例如登录)时,我收到JSON,但它永远不是正确的响应,并且始终避免PHP中的select / insert / update语句(它们在本地运行良好)。
我已经坚持了几天,任何投入都赞赏了!