Wow thanks Brian for the great suggestions. I will check into the CSS for tags and look at how I have been querying the database.
Barb --- In [email protected], Brian Cummiskey <[EMAIL PROTECTED]> wrote: > > you still need to use html to display an image on the screen, even if > you got it form the database. > > change: > > <?php echo $itemNo["prodImageSmallPath"]; ?> > > > to > > <?php echo "<img src=" . $itemNo["prodImageSmallPath"] ." />"; ?> > > > And before you get into this too far, I'd HIGHLY suggest you look into CSS. All those in-line center and font tag non-sense is not only depreciated, but makes the entire code a mess. > > > More so, querying the database 5 different times for 1 record is a huge no-no. You will add crazy server load by doing that. > Select everything you need (no, not *, select the field names) and put it into an array with one query. Community email addresses: Post message: [email protected] Subscribe: [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] List owner: [EMAIL PROTECTED] Shortcut URL to this page: http://groups.yahoo.com/group/php-list Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/php-list/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/php-list/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
