<?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%3Atbernatonis</link>
        <description></description>
        <pubDate>Sun, 03 May 2026 12:19:43 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Atbernatonis&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Creating a News section on my web page.</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239882#post2239882</link>
          <description><![CDATA[<p>The content would just be the last three news entries. The image uploaded and the image caption entered. The latest entry large top the left and next two small to the right (like image). I'm not much of a programmer. I can edit easily enough but not create from scratch.</p>]]></description>
          <pubDate>Tue, 06 Dec 2016 12:44:46 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239882#post2239882</guid>
        </item>
                <item>
          <title>Creating a News section on my web page.</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239874#post2239874</link>
          <description><![CDATA[<p>I have been using a CMS to create web pages for my site and adding PHP has been a breeze. Now, I am being asked to create a new home page from scratch and I am lost. I need to create a news section on the page a particular layout (see attached file). I have limited knowledgw of PHP , but I'm learning!</p>
<p>-Tony</p>]]></description>
          <pubDate>Tue, 06 Dec 2016 11:17:28 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239874#post2239874</guid>
        </item>
                <item>
          <title>Displaying list entry with empty thumbnail &amp; organizing info</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239786#post2239786</link>
          <description><![CDATA[<p>Thanks Damon,</p>
<p>you're a life saver!</p>
<p>-Tony</p>]]></description>
          <pubDate>Wed, 16 Nov 2016 12:10:10 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239786#post2239786</guid>
        </item>
                <item>
          <title>Displaying list entry with empty thumbnail &amp; organizing info</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239783#post2239783</link>
          <description><![CDATA[<p>Hi,</p>
<p>I pretty much have it where I want it. You are AMAZING! </p>
<p>All I need now is to add an &lt;hr/&gt; between entries. Is this possible with a table? If so, how? I've attached my php file.</p>
<p>Tony</p>]]></description>
          <pubDate>Wed, 16 Nov 2016 11:04:55 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239783#post2239783</guid>
        </item>
                <item>
          <title>Displaying list entry with empty thumbnail &amp; organizing info</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239776#post2239776</link>
          <description><![CDATA[<p>Hi Damon,</p>
<p>I tried using the code you provided but get an error:<br /></p>
<p><b>Parse error</b>: syntax error, unexpected ')' in <b>C:\inetpub\wwwroot\directories\directory.php</b> on line <b>62</b></p>
<p>That line would be:</p>
<p>&lt;?php if() : // if there is no image uploaded, show this image ?&gt;</p>
<p>Let me know if you need any more info.</p>
<p>Thank you!</p>
<p>Tony</p>]]></description>
          <pubDate>Wed, 16 Nov 2016 07:34:02 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239776#post2239776</guid>
        </item>
                <item>
          <title>Displaying list entry with empty thumbnail &amp; organizing info</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239762#post2239762</link>
          <description><![CDATA[<p>I am attempting to restructure the employee directory for my organization from scratch. I have 2 issues:</p>
<p>1. When the employees are displayed, the ones without an uploaded headshot show up as just a blank space (without info). Just 2 break lines. We have several temp employees that don't have headshots and would like to display just their contact info.</p>
<p>2. How would I put the php into a table to organize the information better? What I'm trying to do is have the headshot on the right, Name, title and department middle, and contact info on the left.</p>
<p>Here's the code I have so far:</p>
<p>&lt;?php foreach ($directoryRecords as $record): ?&gt;<br /> &lt;?php foreach ($record['photo'] as $index =&gt; $upload): ?&gt;<br /> &lt;img class="float-left" style="margin: 0px 20px;" src="&lt;?php echo htmlencode($upload['thumbUrlPath']) ?&gt;" width="&lt;?php echo $upload['thumbWidth'] ?&gt;" height="&lt;?php echo $upload['thumbHeight'] ?&gt;" alt="" /&gt;<br />&lt;strong&gt;<br /> &lt;?php echo htmlencode($record['first_name']) ?&gt;&amp;nbsp;<br />&lt;?php echo htmlencode($record['last_name']) ?&gt;&lt;/strong&gt;&lt;br/&gt;<br />&lt;?php echo htmlencode($record['title']) ?&gt;&lt;br/&gt;<br />&lt;?php echo htmlencode($record['department_01']) ?&gt;&lt;br/&gt;<br /> &lt;?php echo htmlencode($record['department_02']) ?&gt;&lt;br/&gt;<br /> Office: &lt;?php echo htmlencode($record['office_number']) ?&gt;&lt;br/&gt;<br /> Phone: &lt;?php echo htmlencode($record['phone']) ?&gt;&lt;br/&gt;<br />Email: &lt;?php echo '&lt;a href="mailto:'.htmlencode($record['email']).'"&gt;'.htmlencode($record['email']).'&lt;/a&gt;'; ?&gt;<br /> &lt;?php endforeach ?&gt;<br />&lt;hr /&gt;<br />&lt;?php endforeach ?&gt;<br /> &lt;?php if (!$directoryRecords): ?&gt;<br /> No records were found!&lt;br/&gt;&lt;br/&gt;<br /> &lt;?php endif ?&gt;</p>]]></description>
          <pubDate>Tue, 15 Nov 2016 10:03:18 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239762#post2239762</guid>
        </item>
                <item>
          <title>Email link in directory search results</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239637#post2239637</link>
          <description><![CDATA[<p>That works! Thanks.</p>]]></description>
          <pubDate>Thu, 20 Oct 2016 11:19:25 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239637#post2239637</guid>
        </item>
                <item>
          <title>Email link in directory search results</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239635#post2239635</link>
          <description><![CDATA[<p>I need to have the email display as a link in my directory listing. Here is the line that show "Email: school@school.edu". I need that email address to be an email link. <br /><br /></p>
<p>Email: &lt;?php echo htmlencode($record['email']) ?&gt;</p>]]></description>
          <pubDate>Thu, 20 Oct 2016 10:48:02 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239635#post2239635</guid>
        </item>
                <item>
          <title>Correct &apos;date&apos; format?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2237943#post2237943</link>
          <description><![CDATA[<p>I use CMS to create date specific news feeds which need to be listed in order on my website. What is the proper format to enter the date so it lists in order. It doesn't seem to take the year into account.</p>
<p>For instance, 01/12/2016 would be listed chronologically before 12/31/2015 because the year is not taken into account. I noticed if I spell out the month, it goes alphabetically.</p>
<p>Any feedback would help. Thanks!</p>]]></description>
          <pubDate>Thu, 07 Jan 2016 10:26:37 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2237943#post2237943</guid>
        </item>
              </channel>
    </rss>
  