我正在尝试在wordpress中创建一个动态页面来访问mysql数据库。我对如何解决这个问题感到很困惑。在我的wp-config.php文件中,我具有以下内容:
define('DB_NAME', 'sustakp4_WPJ2h');
/** MySQL database username */
define('DB_USER', 'sustakp4_WPJ2h');
/** MySQL database password */
define('DB_PASSWORD', '5bndHPrEZ6df5NNep');
/** MySQL hostname */
define('DB_HOST', 'localhost');
我创建了一个如下所示的php脚本:
<?php
$testConnection = mysql_connect('localhost', 'sustakp4_WPJ2H', '5bndHPrEZ6df5NNep');
if (!$testConnection) {
die('Error: ' . mysql_error());
}
echo 'Database connection working!';
mysql_close($testConnection);
?>
当我尝试运行scipt时,它说页面不起作用。
我该如何连接?当我提交表格时,会使用什么php文件?有什么需要进去的?
答案 0 :(得分:1)
您没有添加数据库用户名 试试这个:
<?php
$mysqli = new mysqli("localhost", "username", "password", "dbname");
?>
如果这不帮助尝试这篇文章https://api-integration.org/php-code-to-connect-with-mysql-database/。可能有帮助