mysql_query
リソースを返す場合は、 mysql_fetch_array<を使用する必要があります。 / code>
(または同様の例: mysql_fetch_assoc
)リソースでタイトル値を取得します。
例:
$res = mysql_query("SELECT title FROM pages WHERE page = 'index.php'");
$page = mysql_fetch_assoc($res);
// $page['title'] now contains the value (assuming there's an index.php page in the DB).
警告:クエリはSQLインジェクションに対して脆弱です。