mysql_query का उपयोग करें :
<?php
$result = mysql_query('SELECT t.messageid, t.message
FROM TABLE t
ORDER BY t.messageid DESC
LIMIT 1') or die('Invalid query: ' . mysql_error());
//print values to screen
while ($row = mysql_fetch_assoc($result)) {
echo $row['messageid'];
echo $row['message'];
}
// Free the resources associated with the result set
// This is done automatically at the end of the script
mysql_free_result($result);
?>
SQL क्वेरी:
SELECT t.messageid, t.message
FROM TABLE t
ORDER BY t.messageid DESC
LIMIT 1
... मान सेट करने के लिए ORDER BY का उपयोग करता है, इसलिए उच्चतम मान परिणाम में पहली पंक्ति है। LIMIT का कहना है कि उन सभी पंक्तियों में से केवल पहली ही वास्तव में परिणाम में वापस आती है। क्योंकि messageid
स्वतः-वृद्धि है, उच्चतम मान सबसे हाल का है...