<?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%3Akovali</link>
        <description></description>
        <pubDate>Fri, 06 Mar 2026 12:08:59 -0800</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?rss=1&amp;k=user%3Akovali" rel="self" type="application/rss+xml" />

                <item>
          <title>Populate form with Job offer(s)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247179#post2247179</link>
          <description><![CDATA[<p>Hi Dave, could you please let me know if it is possible and if so how it's done? Taking the title of any item from a List page through a link that will put it in a contact form field??</p>
<p>Thx!! </p>]]></description>
          <pubDate>Mon, 06 May 2024 13:18:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247179#post2247179</guid>
        </item>
                <item>
          <title>Populate form with Job offer(s)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247176#post2247176</link>
          <description><![CDATA[<p>Sorry Dave, but no, I want to create a link from the List page (with many job offers) to a contact form where people can apply for the job... Not to a detail page (there is no detail page at all). So that the title of the job offer will automaticaly be filled in in the first field of the form when clicked on the link "apply for this job" on the List page. </p>
<p>I'm sorry for not being clear enough. The code should be: List page &gt; contact form</p>
<p>Thx! </p>]]></description>
          <pubDate>Thu, 02 May 2024 13:07:23 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247176#post2247176</guid>
        </item>
                <item>
          <title>Populate form with Job offer(s)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247174#post2247174</link>
          <description><![CDATA[<p>Hi Dave, thanks already.</p>
<p>I managed to do this before but from a Detailpage.php &gt; contactform.php</p>
<p>Now that I'm working from a Listpage.php I'm stuck... </p>
<p>Could you please help me out with an example code for this so I can understand and finalize this requirement for my client ? </p>
<p>Thank you a thousand times!</p>
<p>Koen</p>]]></description>
          <pubDate>Thu, 02 May 2024 08:04:52 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247174#post2247174</guid>
        </item>
                <item>
          <title>Populate form with Job offer(s)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247150#post2247150</link>
          <description><![CDATA[<p>Hi Dave, </p>
<p>I need a littlebit more help on this please...</p>
<p>I have this page with Jobs listing: <a href="https://metalprojects-overpelt.be/vacatures_test.php" rel="nofollow">https://metalprojects-overpelt.be/vacatures_test.php</a> </p>
<p>With this code:</p>
<pre class="language-php"><code>&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;
&lt;?php
  /* STEP 1: LOAD RECORDS - Copy this PHP code block near the TOP of your page */
  require_once "/home/metalpro/public_html/beheer/lib/viewer_functions.php";

  list($vacaturesRecords, $vacaturesMetaData) = getRecords(array(
    'tableName'   =&gt; 'vacatures',
	'where'       =&gt; "hide_listing != 0",
  ));

$numValue = getLastNumberInUrl('1');

?&gt;</code></pre>
<pre class="language-php"><code>&lt;?php foreach ($vacaturesRecords as $record): ?&gt;
      
      &lt;div class="page-inner"&gt;
         &lt;div class="container"&gt;
            &lt;div class="row"&gt;
               &lt;div class="col-md-3"&gt;
              
                &lt;div class="section-info"&gt;
                  &lt;div class="title-hr"&gt;&lt;/div&gt;
                  &lt;div class="info-title"&gt;Vacature&lt;/div&gt;
                &lt;/div&gt;
                                
              &lt;/div&gt;
              
              
              &lt;div class="col-md-9"&gt;
              
              &lt;div class="entry-content"&gt;
                &lt;h3 class="entry-description"&gt;&lt;?php echo $record['title'] ?&gt;&lt;/h3&gt;
                 &lt;p align="justify"&gt;&lt;?php echo $record['content'] ?&gt;&lt;/p&gt;
&lt;p&gt;» &lt;a href="contact_vac.php?num=&lt;?php echo urlencode($vacaturesRecord['num']) ?&gt;"&gt;Reageren op deze vacature&lt;/a&gt;&lt;/p&gt;
                                    
                &lt;/div&gt;
                &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;
          &lt;/div&gt;
          
          &lt;?php endforeach ?&gt;</code></pre>
<p>I just don't know how to get the 'num' variable for each Job...</p>
<p>And the Job contact page: <a href="https://metalprojects-overpelt.be/contact_vac.php" rel="nofollow">https://metalprojects-overpelt.be/contact_vac.php</a> </p>
<p>With this code:</p>
<pre class="language-php"><code>&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;
&lt;?php
  /* STEP 1: LOAD RECORDS - Copy this PHP code block near the TOP of your page */
  require_once "/home/metalpro/public_html/beheer/lib/viewer_functions.php";

  
// load record from 'panden'
  list($vacaturesRecords, $vacaturesMetaData) = getRecords(array(
    'tableName'   =&gt; 'vacatures',
    'where'       =&gt; whereRecordNumberInUrl(1),
	
    'loadUploads' =&gt; true,
    'allowSearch' =&gt; false,
    'limit'       =&gt; '1',
  ));
  $vacaturesRecord = @$vacaturesRecords[0]; // get first record
  if (!$vacaturesRecord) { dieWith404("Record not found!"); } // show error message if no record found

?&gt;</code></pre>
<pre class="language-php"><code>&lt;div class="cfg-element-set" id="cfg-element-23-9-set" &gt;
		&lt;div class="cfg-element-content"&gt;
		&lt;input name="cfg-element-23-9" type="text" class="cfg-type-text cfg-form-value " id="cfg-element-23-9" value="&lt;?php echo $vacaturesRecord['title'] ?&gt;"  /&gt;
		&lt;/div&gt;
	&lt;/div&gt;</code></pre>
<p>As you can see my knowledge of PHP is weak, but I think this is just a matter of the correct code in these 2 pages...?</p>
<p>Please if you could help me out with this... much obliged!</p>
<p>Thanks!</p>]]></description>
          <pubDate>Thu, 25 Apr 2024 01:15:49 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247150#post2247150</guid>
        </item>
                <item>
          <title>Populate form with Job offer(s)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247117#post2247117</link>
          <description><![CDATA[<p>Hi,</p>
<p>On a page with job offers I want to create a link (for each job offer) to a new page with only a contactform where the first field should be automatically filled in with that corresponding job offer. How can I achieve this please?</p>
<p>Thx !!</p>]]></description>
          <pubDate>Tue, 09 Apr 2024 11:36:46 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247117#post2247117</guid>
        </item>
                <item>
          <title>Brand list + model list on one page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245794#post2245794</link>
          <description><![CDATA[<p>Thanks Daniel, I found another and easier way to achieve what I was looking for... Client is happy, so I'm happy ;-)</p>
<p>Koen</p>]]></description>
          <pubDate>Fri, 07 Jan 2022 02:04:40 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245794#post2245794</guid>
        </item>
                <item>
          <title>Multiple Slideshows for all Records on one page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245595#post2245595</link>
          <description><![CDATA[<p>Hi, for a carparts website, I want to have an images slideshow for all possible +50 carparts (Records), all on one webpage.</p>
<p>I found this slideshow code to be looking perfect for what I need: <a href="https://www.w3schools.com/w3css/tryit.asp?filename=tryw3css_slideshow_two" rel="nofollow">https://www.w3schools.com/w3css/tryit.asp?filename=tryw3css_slideshow_two</a> </p>
<p>But I need many more slideshows one the same webpage ofcourse... </p>
<p>On my website this would look like this example: <a href="https://www.remar-autoafbraak.be/new/vw_onderdelen.php" rel="nofollow">https://www.remar-autoafbraak.be/new/vw_onderdelen.php</a></p>
<p>Problem I have is that I need to increase many arrays by +1 for every next carpart/slideshow... </p>
<pre class="language-php"><code>&lt;?php foreach ($ra_vw_onderdelenRecords as $record): ?&gt;

&lt;?php echo htmlencode($record['title']) ?&gt;
&lt;?php echo htmlencode($record['content']) ?&gt;


&lt;?php foreach ($record['foto_s'] as $index =&gt; $upload): ?&gt;
																
															  &lt;img class="mySlides1" src="&lt;?php echo $upload['urlPath'] ?&gt;" style="width:100%"&gt;
&lt;img class="mySlides1" src="&lt;?php echo $upload['urlPath'] ?&gt;" style="width:100%"&gt;
&lt;img class="mySlides1" src="&lt;?php echo $upload['urlPath'] ?&gt;" style="width:100%"&gt;
  
  																&lt;?php endforeach ?&gt;
&lt;?php endforeach ?&gt;</code></pre>
<p>So for every extra carpart I need to increase class="mySlides1" to  class="mySlides2", class="mySlides3", class="mySlides4", class="mySlides5"  etc...</p>
<pre class="language-php"><code>&lt;img class="mySlides2" src="&lt;?php echo $upload['urlPath'] ?&gt;" style="width:100%"&gt;
&lt;img class="mySlides2" src="&lt;?php echo $upload['urlPath'] ?&gt;" style="width:100%"&gt;
&lt;img class="mySlides2" src="&lt;?php echo $upload['urlPath'] ?&gt;" style="width:100%"&gt;


&lt;img class="mySlides3" src="&lt;?php echo $upload['urlPath'] ?&gt;" style="width:100%"&gt;
&lt;img class="mySlides3" src="&lt;?php echo $upload['urlPath'] ?&gt;" style="width:100%"&gt;
&lt;img class="mySlides3" src="&lt;?php echo $upload['urlPath'] ?&gt;" style="width:100%"&gt;

&lt;img class="mySlides4" src="&lt;?php echo $upload['urlPath'] ?&gt;" style="width:100%"&gt;
&lt;img class="mySlides4" src="&lt;?php echo $upload['urlPath'] ?&gt;" style="width:100%"&gt;
&lt;img class="mySlides4" src="&lt;?php echo $upload['urlPath'] ?&gt;" style="width:100%"&gt;

...</code></pre>
<p>And also in the script at page bottom I need to increase the value of some parameters by +1 for every carpart</p>
<pre class="language-javascript"><code>&lt;script&gt;
var slideIndex = [1,1,1,1,1]; (extra ",1" for each carpart/slideshow)
var slideId = ["mySlides1", "mySlides2", "mySlides3", "mySlides4"] (etc. for each carpart/slideshow)
showDivs(1, 0);
showDivs(1, 1);
showDivs(1, 2);
	
function plusDivs(n, no) {
  showDivs(slideIndex[no] += n, no);
}

function showDivs(n, no) {
  var i;
  var x = document.getElementsByClassName(slideId[no]);
  if (n &gt; x.length) {slideIndex[no] = 1}
  if (n &lt; 1) {slideIndex[no] = x.length}
  for (i = 0; i &lt; x.length; i++) {
    x[i].style.display = "none";  
  }
  x[slideIndex[no]-1].style.display = "block";  
}
	&lt;/script&gt;</code></pre>
<p>How can I automate this so that when I have e.g. 25 carparts I can show 25 slideshows on the page ?</p>
<p>I know I should increase these values depending on the amount of carparts, but I can't find the answer or php code to achieve this... :-(</p>
<p>Please help, thanks a lot!</p>
<p>Koen</p>]]></description>
          <pubDate>Tue, 20 Jul 2021 01:12:05 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245595#post2245595</guid>
        </item>
                <item>
          <title>Booking calendar + shoppingcart: Consulting ??</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245057#post2245057</link>
          <description><![CDATA[<p>Thanks all of you guys, I will have a look at all suggestions and see what's best... !</p>]]></description>
          <pubDate>Sat, 26 Sep 2020 04:09:24 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245057#post2245057</guid>
        </item>
                <item>
          <title>Booking calendar + shoppingcart: Consulting ??</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245026#post2245026</link>
          <description><![CDATA[<p>Hi,<br />For a small hotel I need to make a booking calendar for booking rooms etc., with payments in advance so a kind of shoppingcart will be needed. Any ideas or can this be done through consulting please? Thx!</p>
<p>Koen</p>]]></description>
          <pubDate>Wed, 23 Sep 2020 04:56:29 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245026#post2245026</guid>
        </item>
                <item>
          <title>PHP function: strip_whitespace</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2244688#post2244688</link>
          <description><![CDATA[<p>Great! <br />Thx Jerry !!</p>]]></description>
          <pubDate>Mon, 04 May 2020 13:22:28 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2244688#post2244688</guid>
        </item>
                <item>
          <title>PHP function: strip_whitespace</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2244686#post2244686</link>
          <description><![CDATA[<p>Hi,</p>
<p>I want to strip the whitespace inbetween 2 words.</p>
<p>With PHP function: strip_whitespace</p>
<p>But this is not working the way I expect: &lt;?php echo strip_whitespace($record['title']) ?&gt;</p>
<p>Is this function not working in CMSB ?</p>
<p>Thx,</p>
<p>Koen</p>]]></description>
          <pubDate>Mon, 04 May 2020 12:47:27 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2244686#post2244686</guid>
        </item>
                <item>
          <title>install cmsb with temporary url</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2243489#post2243489</link>
          <description><![CDATA[<p>Hi,</p>
<p>ONE URGENT QUESTION ;-) </p>
<p>Is it possible to install cmsb with a temporary url and point the domainname to the website/server at a later stage ?  I want to keep the old website online until I finish the new one, when finished I need to point the domainname to the server by changing the nameserver settings.</p>
<p>I'm working on this url for now: <a href="http://79.170.40.162/mydomain/" rel="nofollow">http://79.170.40.162/mydomain/</a>     &gt;&gt;&gt;  which should eventually become: mydomain.com</p>
<p><span>So is there anything i should pay special attention to please??</span></p>
<p><span>Thanks,</span></p>
<p><span>Koen</span></p>]]></description>
          <pubDate>Sun, 16 Jun 2019 02:50:11 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2243489#post2243489</guid>
        </item>
                <item>
          <title>List of phone repairs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2243422#post2243422</link>
          <description><![CDATA[<p>Hi, </p>
<p>I'm building a website for a client to advertise the prices for repair of different brands and their models of smartphones.</p>
<p>This is what I got inside CMSB for now:</p>
<p>tableName = MODELS  (with 2 fields: Brand + Model  -  So my client can add new models if necessary) </p>
<p>tableName = REPAIRS  (with 3 fields: Model (populated from table MODELS/field Model)  +  Description  +  Price )</p>

<p>On the website I would like to show the results like this:</p>
<p>One phone brand per page, on that page a list of all the phone models for that brand, and when clicked on a model all the possible repairs for that model should be shown in a table, like this:<br /><br /></p>
<p><strong>iPhone 6</strong></p>
<p>screen repair      $ 85<br />battery repair      $ 75<br />cover  repair       $  90</p>

<p>I hope it makes sense the way I described it... ;-)   Thanks for any help or suggestions !!</p>
<p>Best regards,</p>
<p>Koen</p>
]]></description>
          <pubDate>Wed, 29 May 2019 12:09:37 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2243422#post2243422</guid>
        </item>
                <item>
          <title>Lightbox gallery question</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242574#post2242574</link>
          <description><![CDATA[<p>Thx Daniel, it works perfect like this !!</p>]]></description>
          <pubDate>Wed, 24 Oct 2018 10:59:23 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242574#post2242574</guid>
        </item>
                <item>
          <title>Lightbox gallery question</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242557#post2242557</link>
          <description><![CDATA[<p>Hi,</p>
<p>I would like to use a lightbox gallery with a single text hyperlink to launch the gallery. I have it working in HTML with this code:</p>
<p>&lt;a class="read-more" href="image-3.jpg" data-lightbox="example-set" data-title="Test1"&gt;<span style="color:#ff0000;">More images</span>&lt;/a&gt;<br /> &lt;a class="read-more" href="image-4.jpg" data-lightbox="example-set" data-title="Test2"&gt;&lt;/a&gt;<br /> &lt;a class="read-more" href="image-5.jpg" data-lightbox="example-set" data-title="Test3"&gt;&lt;/a&gt;<br /> &lt;a class="read-more" href="image-6.jpg" data-lightbox="example-set" data-title="Test4"&gt;&lt;/a&gt;</p>

<p>Now, in CMSB, when I use the code below it will return a text link for every image:</p>
<p><strong>&lt;?php foreach ($eb_fotosRecord['fotos'] as $index =&gt; $upload): ?&gt;</strong> </p>
<p>&lt;a class="read-more" href="<strong>&lt;?php echo $upload['urlPath'] ?&gt;</strong>" data-lightbox="example-set" data-title="Test1"&gt;<span style="color:#000000;">More images</span>&lt;/a&gt;</p>
<p><strong>&lt;?php endforeach ?&gt;</strong></p>
<p>Resulting in:</p>
<p>&lt;a class="read-more" href="image-3.jpg" data-lightbox="example-set" data-title="Test1"&gt;<span style="color:#ff0000;">More images</span>&lt;/a&gt;<br /> &lt;a class="read-more" href="image-4.jpg" data-lightbox="example-set" data-title="Test2"&gt;<span style="color:#ff0000;">More images</span>&lt;/a&gt;<br /> &lt;a class="read-more" href="image-5.jpg" data-lightbox="example-set" data-title="Test3"&gt;<span style="color:#ff0000;">More images</span>&lt;/a&gt;<br /> &lt;a class="read-more" href="image-6.jpg" data-lightbox="example-set" data-title="Test4"&gt;<span style="color:#ff0000;">More images</span>&lt;/a&gt;</p>
<p>Is there a solution to have only one text link for the first image found, and no more links for the rest of the images ?? </p>
<p>Help is much appreciated !  Thanks!</p>
<p>Koen</p>
]]></description>
          <pubDate>Tue, 16 Oct 2018 01:05:44 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242557#post2242557</guid>
        </item>
                <item>
          <title>Simple shopping list</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2241731#post2241731</link>
          <description><![CDATA[<p>Hi Leo,</p>
<p>Thx for your reply.</p>
<p>Let's say I have a page with +100 items for sale, so I would like to click on some of the items to add them to the favorites list. Then, on a seperate "favorites" page I would get an overview of these items with only the name, price and maybe an image... That's it. This page with favorite items could then be printed or e-mailed as a reminder.</p>
<p>I think this list of favorites would only be temporary, as long as the browsersession would last ? But that wouldn't be a problem if so.</p>
<p>Could you provide me with some example code to get me started please ? Thx in advance Leo.</p>
<p>Regards,</p>
<p>Koen</p>
]]></description>
          <pubDate>Mon, 05 Feb 2018 23:50:40 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2241731#post2241731</guid>
        </item>
                <item>
          <title>Simple shopping list</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2241726#post2241726</link>
          <description><![CDATA[<p>Hi, how difficult would it be to offer a simple shopping list or favorites list to my website? Add items from a database to a list that can be printed or e-mailed... No complicated membership, cart, logins, etc... Any ideas ??</p>
<p>Thx</p>
<p>Koen</p>]]></description>
          <pubDate>Sat, 03 Feb 2018 04:33:43 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2241726#post2241726</guid>
        </item>
                <item>
          <title>Blog with multiple categories</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2240503#post2240503</link>
          <description><![CDATA[<p>Hi Jerry,</p>
<p>Thx for the help, much appreciated !</p>
<p>When you say: "<span>You can then use that choice to set a 'where' value to limit the blog posts shown to only that category."  I'm wondering what the 'where' statement should look like... could you give me an example pls ?</span></p>
<p><span>For the moment I have a working solution with a jump menu, see below, but your solution would be nicer I think...</span></p>
<p><span>Thanks again.</span></p>
<p><span>Koen</span></p>
<p><span><a href="http://pretecho-opleiding.be/blog.php" rel="nofollow">http://pretecho-opleiding.be/blog.php</a></span></p>
<p>&lt;form id="form1"&gt;<br /> &lt;select name="menu1" onchange="MM_jumpMenu('parent',this,0)"&gt;<br /> &lt;option value=""&gt;Kies een rubriek&lt;/option&gt;<br /> &lt;?php foreach ($pe_blog_rubriekenRecords as $record): ?&gt; <br /> &lt;option value="blog.php?rubriek=&lt;?php echo urlencode($record['title']) ?&gt;"&gt;&lt;?php echo $record['title'] ?&gt;&lt;/option&gt; <br /> &lt;?php endforeach; ?&gt;<br /> &lt;/select&gt;<br /> &lt;/form&gt;</p>
]]></description>
          <pubDate>Tue, 09 May 2017 00:39:34 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2240503#post2240503</guid>
        </item>
                <item>
          <title>Blog with multiple categories</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2240484#post2240484</link>
          <description><![CDATA[<p>Anybody ?</p>]]></description>
          <pubDate>Mon, 08 May 2017 05:50:25 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2240484#post2240484</guid>
        </item>
                <item>
          <title>Blog with multiple categories</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2240456#post2240456</link>
          <description><![CDATA[<p>Hi Ross, how will I continue from here... ?</p>]]></description>
          <pubDate>Fri, 28 Apr 2017 00:23:58 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2240456#post2240456</guid>
        </item>
                <item>
          <title>Blog with multiple categories</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2240451#post2240451</link>
          <description><![CDATA[<p>Hi Ross,</p>
<p>I've build a page that simply lists all blog posts, see file attached please.</p>
<p>The result in the browser: <a href="http://pretecho-opleiding.be/blogtest.php" rel="nofollow">http://pretecho-opleiding.be/blogtest.php</a> </p>
<p>Best regards,</p>
<p>Koen</p>
]]></description>
          <pubDate>Tue, 25 Apr 2017 05:22:19 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2240451#post2240451</guid>
        </item>
                <item>
          <title>Day of week ?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2240398#post2240398</link>
          <description><![CDATA[<p>Thx, tried it and works very well !!</p>]]></description>
          <pubDate>Tue, 11 Apr 2017 07:19:10 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2240398#post2240398</guid>
        </item>
                <item>
          <title>Blog with multiple categories</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2240396#post2240396</link>
          <description><![CDATA[<p>Is it possible to have 2 lists of different tables on one page anyway ??</p>]]></description>
          <pubDate>Mon, 10 Apr 2017 13:26:07 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2240396#post2240396</guid>
        </item>
                <item>
          <title>Blog with multiple categories</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2240392#post2240392</link>
          <description><![CDATA[<p>Hi,</p>
<p>I'm trying to build a blog with different categories, every category can have many stories. The list of all categories and list of corresponding stories should always be shown on the same page. Now, when I click on a category I only get the first story for that category... But I want it to show ALL stories for that category.</p>
<p>The code that I'm using now:</p>
<p>&lt;?php<br /> /* STEP 1: LOAD RECORDS - Copy this PHP code block near the TOP of your page */<br /><br /> // load viewer library<br /> $libraryPath = 'beheer/lib/viewer_functions.php';<br /> $dirsToCheck = array('/home/weballbe/public_html/','','../','../../','../../../');<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."); }</p>
<p>// load records from 'pe_blog_rubrieken'<br /> list($pe_blog_rubriekenRecords, $pe_blog_rubriekenMetaData) = getRecords(array(<br /> 'tableName' =&gt; 'pe_blog_rubrieken',<br /> 'loadUploads' =&gt; false,<br /> 'allowSearch' =&gt; false,<br /> ));<br /><br /> // load records from 'pe_blog'<br /> list($pe_blogRecords, $pe_blogMetaData) = getRecords(array(<br /> 'tableName' =&gt; 'pe_blog',<br /> 'where' =&gt; whereRecordNumberInUrl(1),<br /> 'loadUploads' =&gt; true,<br /> 'allowSearch' =&gt; false,<br /> ));<br /><br />?&gt;</p>
<p>I think it has something to do with <strong>'where' =&gt; whereRecordNumberInUrl(1), </strong>why it's only showing 1 story but don't know the correct PHP code to get all stories for one categorie.</p>
<p>Anybody that can help me please ?</p>
<p>Thanks !</p>
]]></description>
          <pubDate>Mon, 10 Apr 2017 06:43:26 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2240392#post2240392</guid>
        </item>
                <item>
          <title>Day of week ?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2240379#post2240379</link>
          <description><![CDATA[<p>Hi, </p>
<p>No, I'm thinking of something that will override the standard message when they enter some text manually for that day...</p>]]></description>
          <pubDate>Thu, 06 Apr 2017 07:55:08 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2240379#post2240379</guid>
        </item>
              </channel>
    </rss>
  