<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title>Displaying results based on &amp;apos;status&amp;apos;</title>
        <link>https://interactivetools.com/forum/forum-posts.php?Displaying-results-based-on-status-80303</link>
        <description></description>
        <pubDate>Tue, 12 May 2026 02:21:22 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-posts.php?rss=1&amp;Displaying-results-based-on-status-80303" rel="self" type="application/rss+xml" />

                <item>
          <title>Displaying results based on &apos;status&apos;</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2237786#post2237786</link>
          <description><![CDATA[<p>Hi Carole,</p>
<p>The code that I posted are just examples so you might need to replace some variables and values.</p>
<p>I'm guessing that your properties are stored in 'lease_warehouse' table/section so you need to replace my example code's table name 'properties' with 'lease_warehouse' (replace it with correct table/section name if my guess is wrong).<br />Here's how the "new on market" MySql query and code to display it might look like:</p>
<p><code>&lt;?php<br />// new on market<br /> $newOnMarketPropertiesRecords = mysql_select('lease_warehouse', 'status = "available" ORDER BY createdDate LIMIT 4');<br /> ?&gt;<br /><br /> &lt;?php if (!$newOnMarketPropertiesRecords): ?&gt;<br />   No records were found!&lt;br/&gt;&lt;br/&gt;<br />&lt;?php else; ?&gt;<br />   &lt;?php foreach ($newOnMarketPropertiesRecords as $record): ?&gt; <br />        Some code here..<br />   &lt;?php endforeach ?&gt;<br />&lt;?php endif; ?&gt;</code></p>
<p>Let me know if that works or post any errors you get if it didn't.</p>
<p>Thanks,</p>]]></description>
          <pubDate>Fri, 27 Nov 2015 09:38:40 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2237786#post2237786</guid>
        </item>
                <item>
          <title>Displaying results based on &apos;status&apos;</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2237783#post2237783</link>
          <description><![CDATA[<p>Hi Daryl</p>
<p>I'll give this one more go.</p>
<p>I am currently using</p>
<p>&lt;?php</p>
<p>$count=0;</p>
<p>$maxCols=4;</p>

<p>?&gt;<br />&lt;?php foreach ($lease_warehouseRecords as $record): ?&gt;   .... and then to close it</p>
<p>&lt;?php endforeach ?&gt;</p>

<p>&lt;?php if (!$lease_warehouseRecords): ?&gt;</p>
<p>No records were found!&lt;br/&gt;&lt;br/&gt;</p>
<p>&lt;?php endif ?&gt;</p>

<p>So does that mean I replace this (err, I guess with ...</p>
<p><span>// new on market</span><br /><span>$newOnMarketPropertiesRecords = mysql_select('properties', 'status = "available" ORDER BY createdDate LIMIT 4');</span></p>

<p><span>Tried that and it didn't work (as that also makes a list, and I need it to be columns)</span></p>]]></description>
          <pubDate>Thu, 26 Nov 2015 14:43:02 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2237783#post2237783</guid>
        </item>
                <item>
          <title>Displaying results based on &apos;status&apos;</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2237782#post2237782</link>
          <description><![CDATA[<p>Hi Carole,</p>
<p>I wrote my example assuming that the properties are in one cmsb section, ie: "properties" and the status types are in a drop-down list field (not from separate sections) in that "properties" section.<br />And a property/record in "properties" section can have one of these status types: available, under offer or leased<br />Is that correct?</p>
<p>So for this line from my example:</p>
<p><code>// new on market<br /> $newOnMarketPropertiesRecords = mysql_select('properties', 'status = "available" ORDER BY createdDate LIMIT 4');</code></p>
<p>We're pulling 4 records (LIMIT 4) from 'properties' section where 'status' is 'available'.<br />While the one below pulls 4 records from the same 'properties' section but, this time, the status of the records that we're pulling is 'under offer'</p>
<p><code>// under offer<br /> $underOfferPropertiesRecords  = mysql_select('properties', 'status = "under offer" ORDER BY createdDate LIMIT 4');</code></p>
<p>As for the errors, if after replacing my example section/table name 'properties' with the actual section where you store your properties and the actual status type still returns some errors, can you please post the errors you've received?</p>
<p>Thanks,</p>]]></description>
          <pubDate>Thu, 26 Nov 2015 13:14:05 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2237782#post2237782</guid>
        </item>
                <item>
          <title>Displaying results based on &apos;status&apos;</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2237779#post2237779</link>
          <description><![CDATA[<p>Hi Carole,</p>
<p>See if you can use something from this code from my FAQ page.</p>
<p>It uses a list field called category</p>
<p>You can use sort order to determine how the records are presented, so "newest first", would be 'orderBy' =&gt; 'createdDate DESC', as below. </p>
<p>Good luck,</p>
<p>Jerry Kornbluth</p>
<p><code>&lt;?php<br />      // load viewer library<br />   $libraryPath = 'cmsAdmin/lib/viewer_functions.php';<br />  $dirsToCheck = array('/path_to_your_server/','','../','../../','../../../');<br />   foreach ($dirsToCheck as $dir) { if (@include_once("$dir$libraryPath")) { break; }}<br />   if (!function_exists('getRecords')) { die("Couldn't load viewer library, check filepath in sourcecode."); }<br /><br /> &lt;?php <br /> list($faqRecords, $faqMetaData) = getRecords(array(<br />     'tableName'   =&gt; 'faq',<br />    'orderBy' =&gt; 'createdDate DESC',<br />   ));<br />   ?&gt;<br />   &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" rel="nofollow">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>"&gt;<br /> &lt;html xmlns="<a href="http://www.w3.org/1999/xhtml" rel="nofollow">http://www.w3.org/1999/xhtml</a>"&gt;<br /> &lt;head&gt;<br /> &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;<br /> &lt;title&gt;FAQ&lt;/title&gt;<br /> &lt;/head&gt;<br /><br /> &lt;body&gt;<br /> &lt;table width="100%" border="0" cellpadding="0"&gt;<br />   &lt;tr&gt;<br />     &lt;td align="center" class="heading_font"&gt;&lt;br /&gt;<br />       FAQ &lt;/td&gt;<br />   &lt;/tr&gt;<br />   &lt;tr&gt;<br />     &lt;td align="center" class="text_font"&gt; CLICK/TAP FOR ANSWERS... &lt;/td&gt;<br />   &lt;/tr&gt;<br />   &lt;?php $old_group = ''; // init blank var.<br /> foreach ($faqRecords as $record): <br /> $group = $record['category:label']; // load sub-group value from record. ?&gt;<br />   &lt;tr&gt;<br />     &lt;td align="left" &gt;&lt;span class="text_font"&gt;<br />       &lt;?PHP<br /> if ($group != $old_group) {echo "&lt;h2&gt;$group&lt;/h2&gt;";}?&gt;<br />       &lt;/span&gt;<br />       &lt;?php   <br /><br /> if  (!preg_match("/^http:\/\//i", $record['url'])) {<br />  $record['url'] = "http://" . $record['url'];   } <br /><br /> ?&gt;<br />       &lt;a class="special-link" href="<br />                             &lt;?php echo $record['_link'] ?&gt;" target="_blank"&gt;<br />       &lt;?php $question = ($record['question']); ?&gt;<br />       &lt;?php $link_text = ($record['link_text']); ?&gt;<br />       &lt;span class="text_font-bold"&gt;- - &lt;?php echo ucwords($question); ?&gt;&lt;/span&gt;&lt;br /&gt;<br />       &lt;/a&gt;<br />       &lt;hr align="center" color="#&lt;?php echo $nawa_colorsRecord['menu_background_color'] ?&gt;" /&gt;&lt;/td&gt;<br />   &lt;/tr&gt;<br />   &lt;?PHP $old_group = $group; // retain sub-group name before moving to new record. ?&gt;<br />   &lt;?php endforeach; ?&gt;<br /> &lt;/table&gt;<br /> &lt;/body&gt;<br /> &lt;/html&gt;</code></p>]]></description>
          <pubDate>Wed, 25 Nov 2015 04:50:12 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2237779#post2237779</guid>
        </item>
                <item>
          <title>Displaying results based on &apos;status&apos;</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2237778#post2237778</link>
          <description><![CDATA[<p>Hi Daryl</p>
<p>I think this is assuming each of the status types are a different section within the cmsb (they aren't) - a property can be any of the available, under offer or leased (drop down) which changes the status on the single file.</p>
<p>I've tried the below and am getting endless errors.  </p>]]></description>
          <pubDate>Tue, 24 Nov 2015 18:45:54 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2237778#post2237778</guid>
        </item>
                <item>
          <title>Displaying results based on &apos;status&apos;</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2237763#post2237763</link>
          <description><![CDATA[<p>Hi Carole,</p>
<p>One way to do it is to have a query for each of the status and add where clause to select specific status.<br />For example:</p>
<p><code>// new on market<br />$newOnMarketPropertiesRecords = mysql_select('properties', 'status = "available" ORDER BY createdDate LIMIT 4');<br /><br />// under offer<br />$underOfferPropertiesRecords  = mysql_select('properties', 'status = "under offer" ORDER BY createdDate LIMIT 4');<br /><br />// leased<br />$leasedPropertiesRecords      = mysql_select('properties', 'status = "leased" ORDER BY createdDate LIMIT 4');</code></p>
<p>And then use foreach loop to display the contents under their designated headings:</p>
<p><code>// for "new on market" heading<br />foreach ($newOnMarketPropertiesRecords as $newOnMarketPropertiesRecord){<br />  echo htmlencode($newOnMarketPropertiesRecord['name']);<br />}</code></p>
<p>Hope this helps!</p>
<p>Cheers,</p>]]></description>
          <pubDate>Mon, 23 Nov 2015 13:36:01 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2237763#post2237763</guid>
        </item>
                <item>
          <title>Displaying results based on &apos;status&apos;</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2237753#post2237753</link>
          <description><![CDATA[<p>Hi Jerry</p>
<p>Thanks for this.  It looks very confusing, but I'll try and wade thru it.</p>]]></description>
          <pubDate>Sun, 22 Nov 2015 20:26:20 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2237753#post2237753</guid>
        </item>
                <item>
          <title>Displaying results based on &apos;status&apos;</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2237746#post2237746</link>
          <description><![CDATA[<p>Hi Carole,</p>
<p>Here's a recipe from my CMSB Cookbook <a href="http://www.thecmsbcookbook.com" rel="nofollow">http://www.thecmsbcookbook.com</a> that might help...</p>
<p>Best,</p>
<p>Jerry Kornbluth</p>
<p><strong>SORTING BY GROUP AND INSERTING GROUP HEADINGS IN A LIST VIEWER (ANOTHER APPROACH) - Mar 23rd, 2012</strong> <br /><br /><span><span> <span style="color:#000000;"> This approach seems to be a bit easier to implement but it only worked with a bit of help from Jason Sauchuk, from<br />Interactive Tools.<br /><br />I wanted to allow for an expanding list of categories (actually board of director positions in an organization) that<br />could be managed by my client from the management interface, without resorting to any coding changes.<br /><br />The first thing I did was to create a multi-record editor called board_of_director_positions with only one text field<br />called position. I set the sort to dragSortOrder DESC so that the positions would appear in the correct order.<br /><br />Then, in the accounts editor, since some board members held 2 positions, I populated 2 single value list fields<br />(board_of_director_position_1 and board_of_director_position_2)  using the board_of_director_positions table as the<br />source, the num field for the option values and the position field for the label values.<br /><br />Then I used array_pluck after the list records call to create a variable containing a list of the positions so that I<br />could display their names in my viewer <br /></span></span></span></p>
<blockquote><br /><br /><span style="color:#000000;">&lt;?php<br /><br /> </span><span style="color:#000000;">list(</span><span style="color:#000000;">$accountsRecords</span><span style="color:#000000;">, </span><span style="color:#000000;">$accountsMetaData</span><span style="color:#000000;">) = </span><span style="color:#000000;">getRecords</span><span style="color:#000000;">(array(<br />    </span><span style="color:#000000;">'tableName'   </span><span style="color:#000000;">=&gt; </span><span style="color:#000000;">'accounts'</span><span style="color:#000000;">,<br /><br />  ));<br /><br /> list(</span><span style="color:#000000;">$board_of_director_positionsRecords</span><span style="color:#000000;">, </span><span style="color:#000000;">$board_of_director_positionsMetaData</span><span style="color:#000000;">) = </span><span style="color:#000000;">getRecords</span><span style="color:#000000;">(array(<br />    </span><span style="color:#000000;">'tableName'   </span><span style="color:#000000;">=&gt; </span><span style="color:#000000;">'board_of_director_positions'</span><span style="color:#000000;">,<br />   ));<br /><br />  </span><span style="color:#000000;">$directorposition </span><span style="color:#000000;">= </span><span style="color:#000000;">array_filter</span><span style="color:#000000;">(</span><span style="color:#000000;">array_pluck</span><span style="color:#000000;">(</span><span style="color:#000000;">$board_of_director_positionsRecords</span><span style="color:#000000;">, </span><span style="color:#000000;">'position'</span><span style="color:#000000;">)); </span><span style="color:#000000;">?&gt;<br /></span></blockquote>
<p><span><span><span style="color:#000000;"><br /><br />In the body of the viewer, I looped through and listed all of the positions, and then looped through all of the accounts<br />editor records for matches to those positions.<br /><br />After much consternation, Jason suggested adding the pseudo field :label to the accounts record fields, since otherwise<br />I was trying to compare a record number to a text label. And that popped the office holders names into their correct<br />slots.<br /><br /></span></span></span></p>
<blockquote><br /><br />?php foreach ($directorposition as $position): ?&gt; <br /><br />&lt;h3 class="your_class_1"&gt;<span style="color:#000000;">&lt;?php </span><span style="color:#000000;">echo </span><span style="color:#000000;">strtoupper</span><span style="color:#000000;">(</span><span style="color:#000000;">$position</span><span style="color:#000000;">); </span><span style="color:#000000;">?&gt;</span>&lt;/h3&gt;<br /><br /><span style="color:#000000;">&lt;?php </span><span style="color:#000000;">foreach (</span><span style="color:#000000;">$accountsRecords </span><span style="color:#000000;">as </span><span style="color:#000000;">$record</span><span style="color:#000000;">): </span><span style="color:#000000;">?&gt;<br /></span><br /><span style="color:#000000;">&lt;?php </span><span style="color:#000000;">if (</span><span style="color:#000000;">$record</span><span style="color:#000000;">[</span><span style="color:#000000;">'board_of_director_position_1:label'</span><span style="color:#000000;">] == </span><span style="color:#000000;">$position </span><span style="color:#000000;">|| </span><span style="color:#000000;">$record</span><span style="color:#000000;">[</span><span style="color:#000000;">'board_of_director_position_2:label'</span><span style="color:#000000;">] ==<br /></span><span style="color:#000000;">$position</span><span style="color:#000000;">) : </span><span style="color:#000000;">?&gt;<br /></span><br />&lt;span class="your_class_2"&gt;<span style="color:#000000;">&lt;?php </span><span style="color:#000000;">echo </span><span style="color:#000000;">strtoupper</span><span style="color:#000000;">(</span><span style="color:#000000;">$record</span><span style="color:#000000;">[</span><span style="color:#000000;">full_name</span><span style="color:#000000;">']); ?&gt;&lt;/span&gt;   <br />&lt;?php endif ?&gt;<br />                                             <br />&lt;?php endforeach ?&gt; &lt;hr /&gt;   <br />&lt;?php endforeach ?&gt; <br /></span></blockquote>
<p><span><span><span style="color:#000000;"><br /><br />This concept is easily applied to something like an FAQ page where there are multiple categories and multiple questions<br />in each category.<br /><br />Create a multi-record FAQ CATEGORIES editor with one text field called category, a dragSortOrder field and an optional<br />hidden checkbox.<br />Create a multi-record FAQ editor with a single value pull down list field populated using the faq_categories table as<br />the source, the num field for the option values and the position field for the label values.<br /><br />Then, as above, I used array_pluck after the list records call to create a variable containing a list of the categories<br />so that I could display their names in my viewer <br /><br /></span></span></span></p>
<blockquote><br /><br />  $faqgroup = array_filter(array_pluck($faq_categoriesRecords, '<span style="color:#000000;">category</span><span style="color:#000000;">'));<br /><br /></span></blockquote>
<p><span><span><span style="color:#000000;"><br /><br />Again as above, In the body of the viewer, I looped through and listed all of the categories, and then looped through<br />all of the FAQ editor records for matches to those categories.<br /></span></span></span></p>
<blockquote><br /><br />&lt;?php foreach ($faqgroup as $group): ?&gt; <br />&lt;h1 class="your_class_1"&gt;&lt;?php echo strtoupper($group); ?&gt;&lt;/h1&gt;<br />&lt;?php foreach ($faqRecords as $record): ?&gt;<br />&lt;?php if ($record['<span style="color:#000000;">category</span><span style="color:#000000;">:</span><span style="color:#000000;">label</span><span style="color:#000000;">'] == $group) : ?&gt;<br />&lt;?php $question = htmlspecialchars($record['</span><span style="color:#000000;">question</span><span style="color:#000000;">']); ?&gt; &lt;span class="your_class_2"&gt;&lt;?php echo strtoupper($question);<br />?&gt;&lt;/span&gt;<br />&lt;div align="left" class="your_class_3"&gt;&lt;?php echo maxWords($record['</span><span style="color:#000000;">answer</span><span style="color:#000000;">'], 25); ?&gt;<br />&lt;?php if (wordCount($record['</span><span style="color:#000000;">answer</span><span style="color:#000000;">']) &gt; 25) : ?&gt;&lt;a class="special" href="&lt;?php echo $record['</span><span style="color:#000000;">_link</span><span style="color:#000000;">']; ?&gt;"&gt;&lt;span<br />class="body-text-bold-10"&gt;... read more&lt;/span&gt;&lt;/a&gt;&lt;?php endif; ?&gt;<br />&lt;/div&gt;   <br />&lt;?php endif ?&gt;<br />                                             <br />&lt;?php endforeach ?&gt;<br />&lt;hr /&gt;   <br />&lt;?php endforeach ?&gt; <br /></span></blockquote>
<p><span><span><span style="color:#000000;"><br /><br />Since I'</span><span style="color:#000000;">m using a detail page </span><span style="color:#000000;">for </span><span style="color:#000000;">the complete answers</span><span style="color:#000000;">, </span><span style="color:#000000;">I included functions called maxWords </span><span style="color:#000000;">and </span><span style="color:#000000;">wordCount to show a<br /></span><span style="color:#000000;">"read more" </span><span style="color:#000000;">link only </span><span style="color:#000000;">if </span><span style="color:#000000;">there were more than 25 words in the answer</span><span style="color:#000000;">. </span><span style="color:#000000;">These functions are defined in the head section of<br />my viewer</span><span style="color:#000000;">, </span><span style="color:#000000;">with</span><span style="color:#000000;">:<br /><br /></span></span></span></p>
<blockquote><br /><br /><span style="color:#000000;">&lt;?</span><span style="color:#000000;">PHP<br /></span><span style="color:#000000;">function </span><span style="color:#000000;">maxWords</span><span style="color:#000000;">(</span><span style="color:#000000;">$textOrHtml</span><span style="color:#000000;">, </span><span style="color:#000000;">$maxWords</span><span style="color:#000000;">) {<br /></span><span style="color:#000000;">$text </span><span style="color:#000000;">= </span><span style="color:#000000;">strip_tags</span><span style="color:#000000;">(</span><span style="color:#000000;">$textOrHtml</span><span style="color:#000000;">);<br /></span><span style="color:#000000;">$words </span><span style="color:#000000;">= </span><span style="color:#000000;">preg_split</span><span style="color:#000000;">(</span><span style="color:#000000;">"/\s+/"</span><span style="color:#000000;">, </span><span style="color:#000000;">$text</span><span style="color:#000000;">, </span><span style="color:#000000;">$maxWords</span><span style="color:#000000;">+</span><span style="color:#000000;">1</span><span style="color:#000000;">);<br />if (</span><span style="color:#000000;">count</span><span style="color:#000000;">(</span><span style="color:#000000;">$words</span><span style="color:#000000;">) &gt; </span><span style="color:#000000;">$maxWords</span><span style="color:#000000;">) { unset(</span><span style="color:#000000;">$words</span><span style="color:#000000;">[</span><span style="color:#000000;">$maxWords</span><span style="color:#000000;">]); }<br /></span><span style="color:#000000;">$output </span><span style="color:#000000;">= </span><span style="color:#000000;">join</span><span style="color:#000000;">(</span><span style="color:#000000;">' '</span><span style="color:#000000;">, </span><span style="color:#000000;">$words</span><span style="color:#000000;">);<br /><br />return </span><span style="color:#000000;">$output</span><span style="color:#000000;">;<br />}<br /></span><span style="color:#000000;">?&gt;<br /></span><br /><span style="color:#000000;">&lt;?PHP<br /></span><span style="color:#000000;">function </span><span style="color:#000000;">wordCount</span><span style="color:#000000;">(</span><span style="color:#000000;">$textOrHtml</span><span style="color:#000000;">) {<br /></span><span style="color:#000000;">$text </span><span style="color:#000000;">= </span><span style="color:#000000;">strip_tags</span><span style="color:#000000;">(</span><span style="color:#000000;">$textOrHtml</span><span style="color:#000000;">, </span><span style="color:#000000;">"&lt;b&gt;&lt;/b&gt;&lt;i&gt;&lt;/i&gt;"</span><span style="color:#000000;">);<br /></span><span style="color:#000000;">$words </span><span style="color:#000000;">= </span><span style="color:#000000;">preg_split</span><span style="color:#000000;">(</span><span style="color:#000000;">"/\s+/"</span><span style="color:#000000;">, </span><span style="color:#000000;">$text</span><span style="color:#000000;">);<br /><br />return </span><span style="color:#000000;">count</span><span style="color:#000000;">(</span><span style="color:#000000;">$words</span><span style="color:#000000;">);<br />}<br /></span><span style="color:#000000;">?&gt;<br /></span></blockquote>]]></description>
          <pubDate>Sat, 21 Nov 2015 12:19:29 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2237746#post2237746</guid>
        </item>
                <item>
          <title>Displaying results based on &apos;status&apos;</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2237743#post2237743</link>
          <description><![CDATA[<p>Hi</p>
<p>I'm stuck on this one.  I have a list of properties which are either 'available', 'under offer' or 'leased'.  I have used the drop down function to select the status of each.</p>
<p>What I am wanting to do on the home page is display different properties under different headings such as:</p>
<p>1) new on market (display 4 (from the available))</p>
<p>2) under offer (display 4 listed as under offer) and</p>
<p>3) leased (display 4 (ideally the most recently) leased)</p>

<p>Any ideas of how I can go about doing this?</p>
<p>Thanks</p>
<p>Carole</p>]]></description>
          <pubDate>Thu, 19 Nov 2015 19:35:34 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2237743#post2237743</guid>
        </item>
              </channel>
    </rss>
  