gica 0 Denunciar post Postado Junho 30, 2003 Oi Pessoal,Estou fazendo um admin de noticias e quero que mostre uma imagem new antes da noticia, caso ela tenha sido publicada na data do dia. Como faco?if (mysql_num_rows($result2)) { print "<TABLE width=600 border=0 cellspacing=1 cellpadding=5 height=200>"; print "<TR>"; print "<td width=503 height=286 valign=top> "; print "<img src=images/titulonoticias.jpg width=135 height=49><br><br>"; print "<font size='2' face='Comic Sans MS'>"; while ($qry = mysql_fetch_array($result2)) { print date("d/m/y", $qry[created]); print " - <A HREF=\"page2.php?id=".$qry[id]."\">$qry[headline]</A><br>"; } Compartilhar este post Link para o post Compartilhar em outros sites
whoami 0 Denunciar post Postado Junho 30, 2003 if ( date("d/m/y") == date("d/m/y", $qry[created]) ) print "<img src='new.gif' width='xx' height='xx'>";eh algo assim, naum me lembro se o comando date tem essa expressão mesmo, tente dar uma conferida em br.php.net, mas acho q deve ser isso msm; Compartilhar este post Link para o post Compartilhar em outros sites
gica 0 Denunciar post Postado Junho 30, 2003 Valeu !!! Deu certo Compartilhar este post Link para o post Compartilhar em outros sites