foreach query

3 posts by 2 authors in: Forums > CMS Builder
Last Post: June 20, 2009   (RSS)

Re: [isdoo] foreach query

By ross - June 18, 2009

Hi there.

Thanks for posting!

Would something like this work:

Latest <?php echo $news1Record['league'] ?> News

It would just output whatever you have in that field. The only thing is that you would probably want to do a quick search and replace for the "_" to turn them into space:

Latest <?php echo str_replace("_", " ", $news1Record['league']); ?> News
-----------------------------------------------------------
Cheers,
Ross Fairbairn - Consulting
consulting@interactivetools.com

Hire me! Save time by getting our experts to help with your project.
Template changes, advanced features, full integration, whatever you
need. Whether you need one hour or fifty, get it done fast with
Priority Consulting: http://www.interactivetools.com/consulting/

Re: [ross] foreach query

By isdoo - June 20, 2009

Thanks Ross - appreciated.