我的数据库表不会像在scetedlightsllc.com/livetable上那样显示。不确定是否有其他方法可以连接到我创建的xampp localhost数据库。
这是我的config.php文件
hasNextInt()
下面是我的index.php文件
<?php
$mysql_hostname = "localhost";
$mysql_user = "root";
$mysql_password = "";
$mysql_database = "members";
$bd = mysql_connect($mysql_hostname, $mysql_user, $mysql_password)
or die("Opps some thing went wrong");
mysql_select_db($mysql_database, $bd) or die("Opps some thing went wrong");
?>