Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Need help modifying WHILE statement to display user details
Old 10-21-2008, 11:33 AM Need help modifying WHILE statement to display user details
drew22299's Avatar
Skilled Talker

Posts: 93
Trades: 0
Hi,

Is it possible to print out a text string after every 10 records?

for example:

PHP Code:
$row=query // get data from database
 
echo "<table>";
 
while(.....) {
 
echo 
"<tr><td>".$row[username]."</td</tr>";
 
//Print 10 records
//Print message
//Print 10 records
//Print message
 
}
 
echo 
"</table>"
drew22299 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 10-21-2008, 12:19 PM Re: Need help modifying WHILE statement to display user details
jason_alan's Avatar
Super Talker

Posts: 100
Name: Jason
Location: Seattle, WA
Trades: 0
You can use a foreach statement easier with the modulus operator... Try this:

PHP Code:
$i=1;
foreach (
$rows as $row) {
    echo 
'<tr><td>' $row['username'] . '</td></tr>';
    if (
$i%10==0) {
        echo 
'<tr><td>' $message '</td></tr>';
    }
    
$i++;

That will display the message every 10 rows
jason_alan is offline
Reply With Quote
View Public Profile
 
Old 12-18-2008, 10:23 AM Re: Need help modifying WHILE statement to display user details
drew22299's Avatar
Skilled Talker

Posts: 93
Trades: 0
I forgot to check back for replies to this question lol thanks for your reply.
drew22299 is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Need help modifying WHILE statement to display user details
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.11689 seconds with 12 queries