Hello,
I have this snippet of code to echo out the "mailer_id" with the largest value -
<?php
$result = mysql_query('SELECT MAX(mailer_id) FROM mailer_directory')or exit(mysql_error());
echo 'the max mailer_id is ' . mysql_result($result, 0); ?>
My question is how do I echo out the corresponding email value for that field ?