所以我以为我把这件事搞砸了,它确保让我知道我又搞砸了。
<?php
$username="root";
$password="**********";
$database="website";
$server="localhost";
$connect=mysql_connect($server,$username,$password);
;
@mysql_select_db($database) or die( "Unable to select database");
mysql_select_db($database, $connect) or die ("Error selecting specified database on this server: ".mysql_error());
$cdquery="SELECT content FROM homepage";
$cdresult=mysql_query($cdquery) or die ("Query to get data from the first table failed: ".mysql_error());
echo "<p>$cdresult</p>";
mysql_close();
?>
是我目前拥有的代码来显示来自我的表格网站和列数据的信息。我不确定 Resource id #4 是什么,但它显示的是自身而不是内容。有人知道我做错了什么,因此它不会显示我在内容中拥有的信息吗?