I'm still very new to php with the limited time I have so please bare with me. I have a gallery that will generate 3 images per row by using the break tag:
Quote:
$num++;
$images.="<a href=\"$_url/image.php?u=galleries/$_GET[folder]/$file\" target='_blank'><img src=\"$_url.$gallery_path$_GET[folder]/tn-$file\"></a> \n";
if($num==3){
$images.="<br>";
$num="0";
|
I have 15 images total in each gallery so it'll generate 5 rows.
I'm trying to insert a qoute/description between one of the rows like below:
X X X
X X X
qoute
X X X
X X X
X X X
Thanks.