Hi
just wondering if someones successfully adjusted the code to reference specific items in the rss array?
E.g. Print odd numbered rss items here from the array, print even numbered rss items here?
Im not familiar with the notation which you would use to access the array of rss items, and the structure of the rss items
<?php echo substr($feed[3]->itemTitle,0,150).'...' ?> --- what type of notation would you use to access item 3 from the rss array?
Using this notation gives error message of:
Fatal error: Cannot use object of type JObject as array in /homepages/33/d345251787/htdocs/chemmy/modules/mod_jw_srfr/tmpl/default/default.php on line 62
Does this mean you cannot index into the array at all or have I used the wrong notation?