SunQuest
 
           MySQL Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsDatabasesMySQL Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here
  #1  
Old May 27th, 2005, 05:21 PM
lei lei is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: May 2005
Posts: 1 lei User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 14 m 9 sec
Reputation Power: 0
while($row = mysql_fetch_array($result)

I am having an issue with a very simple shopping cart that i am working on. I am designing it to sell stock photos and I am unsure how to output the data from mysql into columns. I want there to be 3 or 4 thumbnails in a row which can be added to a cart but using the while($row = mysql_fetch_array($result) causes them to all be in one column down the page with only one thumb per row and i am wondering if anyone can help me with how to fix this.

Thank you.

Reply With Quote
  #2  
Old May 27th, 2005, 07:53 PM
Madpawn Madpawn is offline
My beat is correct.
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Dec 2004
Posts: 339 Madpawn User rank is Private First Class (20 - 50 Reputation Level)Madpawn User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 2 Days 22 h 3 m 33 sec
Reputation Power: 4
However you pull the results from your database, they're only results -- there's no display logic going on in there. You'll need to build that into the script that pulls those results. It can be as simple as something like:

PHP Code:
 $counter 0;
 while(
$row mysql_fetch_array($result) )
 {
   if(
counter == 4)
   {
      echo 
'<br>';
      
$counter 0;
   }
 
   echo 
$row['picture'];
   
$counter++;
 } 
__________________
"A pawn is the most important piece on the chessboard -- to a pawn"


Reply With Quote
Reply

Viewing: Dev Articles Community ForumsDatabasesMySQL Development > while($row = mysql_fetch_array($result)


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 2 hosted by Hostway