mysql_query
zwraca zasób, musisz użyć mysql_fetch_array
(lub podobny, np. mysql_fetch_assoc
) w zasobie, aby uzyskać wartość tytułu.
Na przykład:
$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).
Ostrzeżenie:Twoje zapytanie jest podatne na wstrzyknięcie SQL.