yo tengo esta consulta:
Código HTML:
<?PHP $result=mysql_query("select description, url, date from gallery where approve='approved' order by id desc limit 0,250",$link); while($row = mysql_fetch_array($result)) { ?> <li><a href="<? echo $row["url"]; ?>" target="_blank" class="style1" rel="nofollow"><? echo $row["date"]; ?>: <? echo $row["description"]; ?></a></li> <? } mysql_free_result($result) ?>
Gracias a cualquier opinion :)