View Single Post
  #12  
Old 01-23-2011, 10:12 AM
  ARW VISIONS's Avatar 
ARW VISIONS ARW VISIONS is offline
 

X-Man
  
Join Date: Jan 2007
Location: Pensacola, FL
Posts: 2,536
 

Default Re: If Statement for any page?

maybe this?

Code:
{if $cat eq "252"} {php} require_once("simplepie.inc"); $feed = new SimplePie(); $feed->set_feed_url("http://www.promartsupplements.co.uk/...nes/?feed=rss2"); $feed->init(); // Limit the items to be shown $i = 0; foreach($feed->get_items() as $item) { if($i <= 2) { echo "<h3 style='font-size:14px;'><a style='color:#000; text-decoration:none; font-size:13px; font-family:Verdana,Arial,Helvetica,Sans-serif;' href='" . $item->get_permalink() . "'>" . $item->get_title() . "</a> </h3>"; echo "<p style='font-family:Verdana,Arial,Helvetica,Sans-serif; font-size:11px;'>" . substr($item->get_description(),0,180) . "...<a style='text-decoration:none; font-size:11px; font-family:Verdana,Arial,Helvetica,Sans-serif;' href='" . $item->get_permalink(). "'>[Read Article]</a></p>"; $i++; } } {/php} {else} {php} require_once("simplepie.inc"); $feed = new SimplePie(); $feed->set_feed_url("http://www.promartsupplements.co.uk/blog/?feed=rss2"); $feed->init(); // Limit the items to be shown $i = 0; foreach($feed->get_items() as $item) { if($i <= 2) { echo "<h3 style='font-size:14px;'><a style='color:#000; text-decoration:none; font-size:13px; font-family:Verdana,Arial,Helvetica,Sans-serif;' href='" . $item->get_permalink() . "'>" . $item->get_title() . "</a> </h3>"; echo "<p style='font-family:Verdana,Arial,Helvetica,Sans-serif; font-size:11px;'>" . substr($item->get_description(),0,180) . "...<a style='text-decoration:none; font-size:11px; font-family:Verdana,Arial,Helvetica,Sans-serif;' href='" . $item->get_permalink(). "'>[Read Article]</a></p>"; $i++; } } {/php} {/if}
__________________
xcart 5.1.2
Reply With Quote