mysql_query
restituisce una risorsa, è necessario utilizzare mysql_fetch_array
(o simili, ad es. mysql_fetch_assoc
) sulla risorsa per ottenere il valore del titolo.
Ad esempio:
$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).
Attenzione:la tua query è vulnerabile a SQL injection.