Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 11-27-2006, 11:57 PM   PM User | #1
curb
New Coder

 
Join Date: May 2006
Posts: 94
Thanks: 0
Thanked 0 Times in 0 Posts
curb is an unknown quantity at this point
Insert Row After X Amount?

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.
curb is offline   Reply With Quote
Old 11-28-2006, 01:21 AM   PM User | #2
chump2877
Senior Coder

 
chump2877's Avatar
 
Join Date: Dec 2004
Location: the U.S. of freakin' A.
Posts: 2,549
Thanks: 15
Thanked 131 Times in 124 Posts
chump2877 is on a distinguished road
it's hard to tell exactly what you;re doing because there is not a lot of context code there to go by....can you show how you are looping through your image files (the code)?

But maybe something like this?:

PHP Code:
$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)
{
    if (
$file == "somefile.jpg")    
        
$images.="<br>".$quote."<br>"// Insert HTML $quote here
    
else
        
$images.="<br>";
      
$num="0"
__________________
Regards, R.J.

---------------------------------------------------------

Help spread the word! Like my YouTube-to-Mp3 Conversion Script on Facebook !! :)
[Related videos and tutorials are also available at my YouTube channel]
chump2877 is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 02:55 PM.


Advertisement
Log in to turn off these ads.