<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title></title>
        <link>https://interactivetools.com/forum/forum-search.php?k=user%3Aesteban</link>
        <description></description>
        <pubDate>Tue, 21 Apr 2026 12:10:14 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Aesteban&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [Jason] How to show name of category which came?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204517#post2204517</link>
          <description><![CDATA[I haven't any idea what to do with this. When I put this code into menu I have error. Could you explain this in the example? Whre is a code to show category?<br /><br />I need the name of the category where the article is assigned and that is linking the name of the place from which I clicked on this article. A simple mechanism to return to the place from which I came. <br /><br />In other words:<br /><br />When I clicked to article &quot;Sunyday&quot; on 5th list-page category3 I would have oportunity to back to 5th list-page category3.<br />]]></description>
          <pubDate>Tue, 25 May 2010 21:32:24 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204517#post2204517</guid>
        </item>
                <item>
          <title>How to show name of category which came?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204492#post2204492</link>
          <description><![CDATA[I have list of article from menu category. I would like to show this name of category with link to this category as kind of a back button. I can't show name of category. How to do this? This is article page list: http://goo.gl/yckD and article list page http://goo.gl/Vyto<br /><br />This is a category list as menu: &quot;main_menu&quot;<br />acces to article list from link in menu:<br /><br />&lt;a href=&quot;article-list.php?category_num=3&quot; <br />&quot;&gt;Category 3&lt;/a&gt;<br /><br />Below all codes.<br />Thanks for help.<br /><br />==============================================<br />Article List<br /><br />&lt;?php<br />  <br />  require_once &quot;/home/trener_osobisty/trener_osobisty/cmsAdmin/lib/viewer_functions.php&quot;;<br />		<br />		 list($main_menuRecords, $selectedCategory) = getCategories(array( <br />    'tableName'   =&gt; 'main_menu', <br />  )); <br /><br />  list($artykulyRecords, $artykulyMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'artykuly',<br />				'perPage'     =&gt; '6',<br />				<br />  ));<br /><br />?&gt;<br /><br />----------------------------------------------<br /><br /><br />&lt;!-- STEP2: Display Records  --&gt;<br /><br />&lt;?php foreach ($artykulyRecords as $record): ?&gt;<br /><br />        &lt;?php foreach ($record['zdjecie_glowne'] as $upload): ?&gt;<br />          &lt;?php if ($upload['hasThumbnail']): ?&gt;<br />&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['thumbUrlPath'] ?&gt;&quot; alt=&quot;&lt;?php echo $record['title'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['thumbWidth'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['thumbHeight'] ?&gt;&quot; border=&quot;0&quot; align=&quot;left&quot; class=&quot;foto-ramka&quot; /&gt;&lt;/a&gt;<br />								&lt;?php endif ?&gt;<br />        &lt;?php endforeach ?&gt;<br />      &lt;!-- STEP2a: /Display Uploads --&gt;<br />      <br /><br />&lt;?php echo date(&quot;d.m.Y&quot;,strtotime($record['createdDate'])); ?&gt;<br /><br />&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['title'] ?&gt;&lt;/a&gt;&lt;br/&gt;<br />&lt;?php echo $record['zajawka'] ?&gt;<br />&lt;br /&gt;<br /><br />&lt;?php endforeach ?&gt;<br />&lt;?php if (!$artykulyRecords): ?&gt;<br />No data!&lt;br/&gt;<br /><br />&lt;?php endif ?&gt;<br /><br /><br /><br />==============================================<br /><br /><br />Article detail<br /><br />&lt;?php<br />  <br />  require_once &quot;/home/trener_osobisty/trener_osobisty/cmsAdmin/lib/viewer_functions.php&quot;;<br />		<br />				  list($artykulyRecords, $artykulyMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'artykuly',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '1',<br />  ));<br />  $artykulyRecord = @$artykulyRecords[0]; // get first record<br /><br />  // show error message if no matching record is found<br />  if (!$artykulyRecord) {<br />    header(&quot;HTTP/1.0 404 Not Found&quot;);<br />    print &quot;Record not found!&quot;;<br />    exit;<br />  }<br /><br /><br />?&gt;<br /><br />----------------------------------------------<br /><br />&lt;?php echo $artykulyRecord['title'] ?&gt;<br />&lt;?php echo $artykulyRecord['zajawka'] ?&gt;<br />&lt;?php echo $artykulyRecord['content'] ?&gt;<br /><br /><br />&lt;?php foreach ($artykulyRecord['galeria_zdjec'] as $upload): ?&gt; <br />&lt;a href=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; title=&quot;&lt;?php echo $upload['info1'] ?&gt;&quot; rel=&quot;lightbox[roadtrip]&quot;&gt;&lt;img src=&quot;&lt;?php echo $upload['thumbUrlPath'] ?&gt;&quot; alt=&quot;&quot; width=&quot;&lt;?php echo $upload['thumbWidth2'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['thumbHeight2'] ?&gt;&quot; border=&quot;0&quot; class=&quot;foto-ramka&quot; /&gt;&lt;/a&gt;<br /><br /><br />&lt;?php $maxCols=4; if (@++$count % $maxCols == 0): ?&gt; <br /><br />&lt;?php endif ?&gt; <br />&lt;?php endforeach; ?&gt;<br />]]></description>
          <pubDate>Mon, 24 May 2010 23:33:11 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204492#post2204492</guid>
        </item>
                <item>
          <title>Re: [Jason] Date format in ListPage field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204120#post2204120</link>
          <description><![CDATA[Yes! Thank you ! :-)<br />]]></description>
          <pubDate>Wed, 12 May 2010 14:42:59 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204120#post2204120</guid>
        </item>
                <item>
          <title>Re: [Jason] Date format in ListPage field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204115#post2204115</link>
          <description><![CDATA[Thanks but not working. I have error:<br /><br />Notice: A non well formed numeric value encountered in /home/trener_osobisty/trener_osobisty/article.php on line 192 01.01.1970<br /><br />I put this:<br />&lt;?php echo date(&quot;d.m.Y&quot;,$artykulyRecord['createdDate']); ?&gt;<br /><br />and on the end put a date but not corect. Any idea?<br />]]></description>
          <pubDate>Wed, 12 May 2010 13:46:35 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204115#post2204115</guid>
        </item>
                <item>
          <title>Re: [esteban] How to show art from category in two columns ?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204077#post2204077</link>
          <description><![CDATA[Ok I figured out. Working :-) Your post was helpfull. Thanks.<br />]]></description>
          <pubDate>Tue, 11 May 2010 16:36:19 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204077#post2204077</guid>
        </item>
                <item>
          <title>Re: [virgodesign] Date format in ListPage field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204075#post2204075</link>
          <description><![CDATA[Help!<br />What about time in date in 2010 year :-)<br />I show date like this: &lt;?php echo $artykulyRecord['createdDate'] ?&gt; and don't need time only date: 11.05.2010<br /><br />Thanks for help<br />]]></description>
          <pubDate>Tue, 11 May 2010 16:34:41 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204075#post2204075</guid>
        </item>
                <item>
          <title>Re: [gkornbluth] How to show art from category in two columns ?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204054#post2204054</link>
          <description><![CDATA[Sorry I don't understand, I do not know PHP and I just can not pass on it in your example. You Give me a solution for images and content separately and I have this one and there are twice as &lt;? Php endforeach?&gt;. What to do in this situation?<br />]]></description>
          <pubDate>Tue, 11 May 2010 11:11:39 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204054#post2204054</guid>
        </item>
                <item>
          <title>How to show art from category in two columns ?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204032#post2204032</link>
          <description><![CDATA[I would like to show this in two column and show name of category.<br /><br />&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br /><br />&lt;?php<br />  <br />  require_once &quot;/home/trener_osobisty/trener_osobisty/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($artykulyRecords, $artykulyMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'artykuly',<br />    'limit'       =&gt; '4',<br />    'where' =&gt; 'on_index',<br />  ));<br /><br />?&gt;<br /><br /><br />-----------------------------------<br /><br />This code show my 4 article, and I need to show this 4 article i two column and add a category name from which an article comes in this place: &lt;!-- Here I need put Category name --&gt;<br /><br />&lt;table width=&quot;233&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;<br />&lt;tr&gt;<br />&lt;td width=&quot;233&quot;&gt;<br /><br />&lt;!-- STEP2: Display Records (Paste this where you want your records to be listed) --&gt;<br />&lt;?php foreach ($artykulyRecords as $record): ?&gt;   <br /><br />&lt;!-- STEP 2a: Display Uploads for field 'zdjecie_glowne' --&gt;<br />        &lt;?php foreach ($record['zdjecie_glowne'] as $upload): ?&gt;<br /><br />          &lt;?php if ($upload['hasThumbnail']): ?&gt;<br />&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['thumbUrlPath2'] ?&gt;&quot; alt=&quot;&lt;?php echo $record['title'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['thumbWidth2'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['thumbHeight2'] ?&gt;&quot; border=&quot;0&quot; align=&quot;left&quot; class=&quot;foto-ramka&quot; /&gt;&lt;/a&gt;<br />								&lt;?php endif ?&gt;<br />        &lt;?php endforeach ?&gt;&lt;br /&gt;<br /><br />&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['title'] ?&gt;&lt;/a&gt;&lt;br/&gt;<br />      Zajawka: &lt;?php echo $record['zajawka'] ?&gt;&lt;br/&gt;<br /><br />      &lt;!-- Here I need put Category name --&gt;<br /><br />&lt;p class=&quot;dot_hor&quot;&gt;&amp;nbsp;&lt;/p&gt;<br /><br />    &lt;?php endforeach ?&gt;<br /><br />    &lt;?php if (!$artykulyRecords): ?&gt;<br />      No records were found!&lt;br/&gt;&lt;br/&gt;<br />    &lt;?php endif ?&gt;<br />&lt;!-- /STEP2: Display Records --&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;/table&gt;<br /><br />-------------------------------------<br /><br />For category:<br /><br />&lt;?php<br />  <br />  require_once &quot;/home/trener_osobisty/trener_osobisty/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($main_menuRecords, $main_menuMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'main_menu',<br />  ));<br /><br />?&gt;<br /><br />Every article has a category = &quot;category_num&quot; but every category_num has a name = &quot;name&quot; and I need put this name.<br /><br />----------------<br /><br />This is this website: http://goo.gl/QTno<br /><br />Please help Interactivetools.<br />]]></description>
          <pubDate>Mon, 10 May 2010 14:37:24 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204032#post2204032</guid>
        </item>
                <item>
          <title>Re: [Dave] How to attached  Page/Article to category?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2202348#post2202348</link>
          <description><![CDATA[Your answer did not help me at all. I do not know php so I do not know where to put the given piece of code. Moreover, in this tutorial is used completely different syntax.<br /><br /><a target="_blank" href="http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/Sub-categories_Tutorial_P77230/">http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/Sub-categories_Tutorial_P77230/</a><br /><br />I got stuck with the categories. When I generate code from the code generator the result is -&gt;  clickable menu, but it does not display the sub-articles assigned to a category it show all the article in database. What is wrong?<br /><br /><br />&lt;?php<br />  <br />  require_once &quot;/home/trener_osobisty/trener_osobisty/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($main_menuRecords, $main_menuMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'main_menu',<br />  ));<br /><br />?&gt;<br /><br /><br />  &lt;!-- STEP2: Display Records (Paste this where you want your records to be listed) --&gt;<br /><br />    &lt;?php foreach ($main_menuRecords as $record): ?&gt;<br />      Record Number: &lt;?php echo $record['num'] ?&gt;&lt;br/&gt;<br />      Parent Category: &lt;?php echo $record['parentNum'] ?&gt;&lt;br/&gt;<br />      Name: &lt;?php echo $record['name'] ?&gt;&lt;br/&gt;<br />      Content: &lt;?php echo $record['content'] ?&gt;&lt;br/&gt;<br />      _link : &lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['_link'] ?&gt;&lt;/a&gt;&lt;br/&gt;<br /><br />      &lt;hr/&gt;<br />    &lt;?php endforeach ?&gt;<br /><br />    &lt;?php if (!$main_menuRecords): ?&gt;<br />      No records were found!&lt;br/&gt;&lt;br/&gt;<br />    &lt;?php endif ?&gt;<br />  &lt;!-- /STEP2: Display Records --&gt;<br /><br /><br />When I used this method:<br /><br /><a target="_blank" href="http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/Sub-categories_Tutorial_P77230/">http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/Sub-categories_Tutorial_P77230/</a><br /><br />It's working on listing page but on detail page for article link is broken, it should be:<br /><br />/article-list.php?category_num=4<br />and is<br />/article.php?category_num=4<br /><br />Please help.<br />Esteban<br />]]></description>
          <pubDate>Mon, 08 Mar 2010 22:29:08 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2202348#post2202348</guid>
        </item>
                <item>
          <title>Re: [esteban] How to attached  Page/Article to category?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2202267#post2202267</link>
          <description><![CDATA[Hi,<br />I found this: <a target="_blank" href="http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/Sub-categories_Tutorial_P77230/">http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/Sub-categories_Tutorial_P77230/</a> this is my answer :-)<br /><br />But i have new problem. <br /><br />1. <br />How to show on webpage for parent category - submenu.<br /><br />Category:<br /><br />product1<br />- product 1.1<br />- product 1.2<br /><br />product 2<br />- product 2.1<br />- product 2.2 <br /><br />I woluld like to show on product 1 only submenu:<br />- product 1.1<br />- product 1.2<br /><br />and on product 2 only submenu:<br />- product 2.1<br />- product 2.2 <br /><br /><br />-------------------<br />2. I have menu from category:<br /><br />&lt;a href=&quot;?&quot;&gt;(All Articles)&lt;/a&gt;<br />    &lt;?php foreach ($main_menuRecords as $category_numRecord): ?&gt; <br />      &lt;?php echo $category_numRecord['_listItemStart'] ?&gt; <br />       <br />      &lt;?php if ($category_numRecord['_isSelected']): ?&gt;&lt;b&gt;&lt;?php endif ?&gt; <br />      &lt;a href=&quot;?category_num=&lt;?php echo $category_numRecord['num'] ?&gt;&quot;&gt;&lt;?php echo $category_numRecord['name'] ?&gt;&lt;/a&gt; <br />      &lt;?php if ($category_numRecord['_isSelected']): ?&gt;&lt;/b&gt;&lt;?php endif ?&gt; <br />       <br />      &lt;?php echo $category_numRecord['_listItemEnd'] ?&gt; <br />    &lt;?php endforeach ?&gt; <br /><br /><br />How to show this menu horizontal not in list?<br /><br />Thanks<br />]]></description>
          <pubDate>Fri, 05 Mar 2010 19:26:48 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2202267#post2202267</guid>
        </item>
                <item>
          <title>Re: [chris] How to attached  Page/Article to category?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2202240#post2202240</link>
          <description><![CDATA[Hi Chris,<br />I have a section in CMSB: &quot;category&quot; with subcategory and one template for article name &quot;article&quot;. I can add article to category or subcategory. <br /><br />Category:<br /><br />product1<br />- product 1.1<br />- product 1.2<br /><br />product 2<br />- product 2.1<br />- product 2.2<br /><br />I would like to make:<br />1. menu on webpage from category - when editor add a category it's show in menu on website and he can add article to this category. Each category-page [listin category page] show article from this category: sort by date.<br /><br />I would like to link to article from this list to detail page.<br /><br />I haven't got a code because i don't how to do this.<br /><br />It's typical navigation frame for website. Website have to include many category and article. Article can be attached to several category - more than one.<br /><br />Thanks<br />]]></description>
          <pubDate>Thu, 04 Mar 2010 20:56:56 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2202240#post2202240</guid>
        </item>
                <item>
          <title>Re: [chris] How to show in two columns?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2202159#post2202159</link>
          <description><![CDATA[Yes, thanks :-)<br />]]></description>
          <pubDate>Tue, 02 Mar 2010 18:13:13 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2202159#post2202159</guid>
        </item>
                <item>
          <title>Re: [Dave] How to attached  Page/Article to category?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2202150#post2202150</link>
          <description><![CDATA[Ok it's help.<br /><br />How to show menu from category -&gt; [by code generator = section category + listpage] and Category page have to link to page with 6 records from this category.<br /><br />How to link from category listing to detail page with full article.<br />]]></description>
          <pubDate>Tue, 02 Mar 2010 16:54:43 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2202150#post2202150</guid>
        </item>
                <item>
          <title>How to show in two columns?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2202142#post2202142</link>
          <description><![CDATA[How to show this in two columns?<br />This is list page, i would like to show only uploads [banner 120x60].<br /><br />&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br />&lt;?php<br />  <br />  require_once &quot;/home/trener_osobisty/trener_osobisty/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($partnerzyRecords, $partnerzyMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'partnerzy',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '6',<br />  ));<br />    $partnerzyRecord = @$partnerzyRecords[0]; // get first record<br /><br />?&gt;<br /><br /><br />&lt;?php foreach ($partnerzyRecords as $record): ?&gt;<br />&lt;?php foreach ($record['banner_120x60'] as $upload): ?&gt;<br />&lt;a href=&quot;http://&lt;?php echo $record['link'] ?&gt;&quot; title=&quot;&lt;?php echo $record['title'] ?&gt;&quot;&gt; &lt;img src=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; alt=&quot;&quot; width=&quot;&lt;?php echo $upload['width'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['height'] ?&gt;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;<br /><br /><br />&lt;?php endforeach ?&gt;<br />&lt;?php endforeach ?&gt;<br />]]></description>
          <pubDate>Mon, 01 Mar 2010 22:33:46 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2202142#post2202142</guid>
        </item>
                <item>
          <title>Re: [chris] How to make a substitute for newsletter?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201922#post2201922</link>
          <description><![CDATA[Thanks! Works great. Form and CSV Eport plugin working fine. <br /><br />Csv file, however, gets all the data from the Newsletter section such as: num, createdDate, createdByUserNum, updatedDate, updatedByUserNum, dragSortOrder. Csv getting large amounts of garbage that is not structured to - in one line. Only needs to export to CSV file e-mail addresses. My client will be copied from this file, e-mail and copied to the program.<br /><br />Can I remove these fields from the database? Is there another way to not export these fields in the csv file.<br /><br />And one more thing. I locked the addition of the same results even though it can be added for the second time the same e-mail. -&gt; i setup: &quot;user may not enter the same value as another record&quot;.<br /><br />and ... i test this and will be better to make after subscribe go to Thanks page [thnx.php] than print word: &quot;Thanks!&quot;. How to do this? :-)<br /><br />Thanks a lot for help.<br />]]></description>
          <pubDate>Thu, 18 Feb 2010 20:41:39 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201922#post2201922</guid>
        </item>
                <item>
          <title>Re: [Donna] How to make a substitute for newsletter?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201889#post2201889</link>
          <description><![CDATA[Hi Donna,<br /><br />Needs by using this form http://goo.gl/6yHG to allow users to add emails to the database CMSB. I created in CMSB new section &quot;newsletter&quot; [ menu type: multi record ] and field e-mail [type text field].<br /><br />User input their e-mail in form then click submit, e-mail is saved to CMSB section &quot;newsletter&quot;, Editor can export list of e-mail to csv by plugin &quot;CSV Export&quot;. How to do this? :-)<br />Thanks<br />]]></description>
          <pubDate>Wed, 17 Feb 2010 22:35:39 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201889#post2201889</guid>
        </item>
                <item>
          <title>Re: [chris] How to make a substitute for newsletter?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201867#post2201867</link>
          <description><![CDATA[Hmm ... still do not know anything :-) but what's next? What type of box? Maybe text field? How to put the field on website for the users? Can it show up a page or cloud confirming the sending?<br />]]></description>
          <pubDate>Tue, 16 Feb 2010 20:30:22 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201867#post2201867</guid>
        </item>
                <item>
          <title>Re: [chris] How to make a back link to list page the same which came?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201854#post2201854</link>
          <description><![CDATA[Yes! It's works perfectly. Thanks :-)<br />]]></description>
          <pubDate>Tue, 16 Feb 2010 15:29:47 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201854#post2201854</guid>
        </item>
                <item>
          <title>How to make a substitute for newsletter?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201847#post2201847</link>
          <description><![CDATA[I would like to make in CMSB field for user to enter e-mail. E-mail should write to a database. Admin or Editor can export list of e-mail to xls or other format to use in outlook.<br /><br />I know only that i have to buy CSV Export Plugin :-)<br /><br />Thanks<br />]]></description>
          <pubDate>Mon, 15 Feb 2010 21:12:35 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201847#post2201847</guid>
        </item>
                <item>
          <title>Re: [chris] How to make a back link to list page the same which came?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201846#post2201846</link>
          <description><![CDATA[Almost working :-) Look at link: http://goo.gl/2hct<br />there displays a &amp;num=3&quot;&gt; i don't know how improve code and the link is wrong not to the right article.<br /><br />You wrote: &quot;...replacing the code in red with the name of your record variable. &quot; I do not know how to do it. What is this record variable in my case?<br /><br />Thanks Chris<br />]]></description>
          <pubDate>Mon, 15 Feb 2010 20:34:46 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201846#post2201846</guid>
        </item>
                <item>
          <title>How to make a back link to list page the same which came?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201835#post2201835</link>
          <description><![CDATA[Hi<br />How to make a back link on article page to list page the same which came? I have few list page, on each list page have links to 2 articles, articles have a back link POWRÃ“T &lt; [= Back]. I would make a link on article page which will enable me to return to the page from which I came not to the first.<br /><br />On this site works: http://goo.gl/TXIr<br /><br />Thanks for any solution.<br />]]></description>
          <pubDate>Mon, 15 Feb 2010 14:44:40 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201835#post2201835</guid>
        </item>
                <item>
          <title>Re: [chris] PAGINATION limit</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201820#post2201820</link>
          <description><![CDATA[This is it, working :-) Thanks for help.<br />]]></description>
          <pubDate>Fri, 12 Feb 2010 15:04:37 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201820#post2201820</guid>
        </item>
                <item>
          <title>Re: [Dave] How to attached  Page/Article to category?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201803#post2201803</link>
          <description><![CDATA[Thanks for help Dave.<br />I working on CMS builder. I have a lot of question, but CMS Builder this is what I waited for years :-) Do you plan to enlarge sections of CMS builder documentation?<br />]]></description>
          <pubDate>Thu, 11 Feb 2010 18:55:00 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201803#post2201803</guid>
        </item>
                <item>
          <title>PAGINATION limit</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201801#post2201801</link>
          <description><![CDATA[How to perform a limit number of pages, pagination number limit. I have article: http://goo.gl/sBRQ and numbers of other pages from this category. &lt; 1 2 3 4 5 6 &gt; over 8 is too much. I would like to see max 7 pages. I used this code for pagination: forum link <a target="_blank" href="http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/gforum.cgi?post=77539;search_string=next%20page;t=search_engine#77539">http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/gforum.cgi?post=77539;search_string=next%20page;t=search_engine#77539</a><br /><br />Thanks for help.<br />]]></description>
          <pubDate>Thu, 11 Feb 2010 18:49:58 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201801#post2201801</guid>
        </item>
                <item>
          <title>Re: [gkornbluth] CMSB and Lightbox</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201761#post2201761</link>
          <description><![CDATA[Thanks, It was helpful :-)<br />]]></description>
          <pubDate>Wed, 10 Feb 2010 13:07:09 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201761#post2201761</guid>
        </item>
              </channel>
    </rss>
  