解析错误:语法错误,第 4 行 /home/content/00/7882800/html/Connections/dueslogin.php 中的意外 T_VARIABLE
试图连接到 godaddy 数据库并且由于 php 错误而无法连接。
<?php
//Variables for connecting to your database.
//These variable values come from your hosting account.
$hostname = "Squarepants.db.7882800.hostedresource.com";
$username = "Squarepants";
$dbname = "Squarepants";
//These variable values need to be changed by you before deploying
$password = "***********";
$usertable = "Spongebob";
$username = "username";
$password = "password";
//Connecting to your database
mysql_connect($hostname, $username, $password) OR DIE ("Unable to
connect to database! Please try again later.");
mysql_select_db($Squarepants);
//Fetching from your database table.
$query = "SELECT * FROM $usertable";
$result = mysql_query($query);
if ($result) {
while($row = mysql_fetch_array($result)) {
$name = $row["$yourfield"];
echo "Name: $name<br>";
}
}
?>