我只想打印发件人的最后一封邮件。这是我的 PHP 代码,我需要在其中使用它。
$resultmsg=mysql_query("SELECT * FROM mails WHERE Recieve=$AID GROUP BY Sender DESC ORDER BY ID DESC LIMIT 5 ",$con);
while($rowmsg=mysql_fetch_array($resultmsg) )
{
$authormsg=$rowmsg['Sender'];
$id=$rowmsg['ID'];
$date=$rowmsg['Date'];
$state=$rowmsg['State'];
$sqlnamea=mysql_query("SELECT * FROM users WHERE ID=$authormsg");
$datauthor=mysql_fetch_object($sqlnamea);
$authorname=$datauthor->Lname;
$authormsgpic=$datauthor->Profpic;
echo"
<li dir='rtl' style='border-bottom:1px solid silver;";
if($rowmsg['State']=='new')echo "border-right:2px solid #FFAEAF;";
echo"' class='postedArticle' id='$id postedArticle' ><a href='sendmsg.php?from=".$authormsg."' style='float:right;' target=home><img style='float:right;max-width:40px;max-height:40px;margin-bottom:3px;' src='images/usrimgs/".$authormsgpic."' /> ".$authorname."</a> ".$rowmsg["Content_text"]."";