Please remember to write your response BELOW the previous text. 
 
From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf
Of Joseph
Sent: Wednesday, April 02, 2008 5:47 AM
To: [email protected]
Subject: [php-list] How Do You Increment Numbers in Steps
 
Hi all

I am trying create a table on the fly, to display unicode characters
and I want that every thirty table cells to insert a table header cell
so that when a user scrolls down the page they can always see a header
every so often.

Can anyone point me to a good mathematics tutorial for PHP please?

Joseph 

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

Hi
 
I hope you using while / for loop to show the list of records.
 
Add condition inside the loop
 
While ....
{
$inc ++;
If($inc % 30 ==0) echo "Your header row code";
}
 
 
Thanks,
Muthukumar Selvarasu,
Project Manager (Web Development),
Webmasters Ltd.

Reply via email to