Código MySQL:
Ver original
$sql = "SELECT * FROM $t_adpics p WHERE p.adid = $xadid AND isevent = '$isevent'"; $pres = mysql_query($sql);
se que se puede hacer un ORDER BY picid, (que seria por id de la foto) pero cuando lo hago me deja de mostrar la imagen lo intente hacer asi:
Código MySQL:
Ver original
$sql = "SELECT * FROM $t_adpics p ORDER BY picid WHERE p.adid = $xadid AND isevent = '$isevent'"; $pres = mysql_query($sql);
Las imágenes las visualizo así:
Código PHP:
Ver original
<?php { $i = 0; ?> <table class="postpics" width="100%"><tr><td> <?php { $i++; $imgsize = GetThumbnailSize("{$datadir[adpics]}/{$row[picfile]}", $images_max_width, $images_max_height); ?> <img src="<?php echo "{$datadir[adpics]}/{$row[picfile]}"; ?>" id="adimg<?php echo $i; ?>" width="<?php echo $imgsize[0]; ?>" height="<?php echo $imgsize[1]; ?>"> <?php } ?> </td></tr></table> <?php $imgcnt = $i; } ?>