mysql_query
एक संसाधन लौटाता है, आपको mysql_fetch_array<का उपयोग करने की आवश्यकता है /कोड>
(या समान, उदा. 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 इंजेक्शन के लिए असुरक्षित है।