<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title>images not viewing</title>
        <link>https://interactivetools.com/forum/forum-posts.php?images-not-viewing-78825</link>
        <description></description>
        <pubDate>Mon, 20 Apr 2026 11:26:42 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-posts.php?rss=1&amp;images-not-viewing-78825" rel="self" type="application/rss+xml" />

                <item>
          <title>images not viewing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231029#post2231029</link>
          <description><![CDATA[<p>Hi,</p>
<p>I took a look at the page again and it looks like you are outputting 4 images, however, they don't look like they are coming from the CMS.  Is that right?</p>
<p>The foreach loop method that I showed you is only used when you are trying to output images that have been uploaded directly to a record in the CMS through an upload field.  Do you have a separate upload field in your home page section?  If so, you can use this code to output all the images uploaded to that section:</p>

<p><code>&lt;div id="lower_boxcontain"&gt; <br />  &lt;?php foreach ($home_pageRecord['images'] as $upload): ?&gt;    <br />    &lt;img src = "&lt;?php echo $upload['urlPath'];?&gt;" width = "71" height = "54" alt = "" /&gt; <br />  &lt;?php endforeach<br />&lt;/div&gt;</code></p>

<p>This code assumes that your upload field in your homepage section is called "images".  So in this case, if you uploaded 4 images to that upload field, all 4 would be output using this 1 foreach loop.</p>

<p>Hope this helps.</p>
]]></description>
          <pubDate>Thu, 20 Jun 2013 10:21:09 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231029#post2231029</guid>
        </item>
                <item>
          <title>images not viewing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231016#post2231016</link>
          <description><![CDATA[<p>Hi Jason,</p>
<p>So like this?  images is the name of the folder they are found in. </p>
<p><code> &lt;div id="lower_boxcontain"&gt; &lt;?php foreach ($home_pageRecord['images'] as $upload): ?&gt;<br />     &lt;img src = "&lt;?php echo $upload['urlPath'];?&gt;" width = "71" height = "54" alt = "" /&gt;<br />     &lt;?php foreach ($home_pageRecord['images'] as $upload): ?&gt;<br />     &lt;img src = "&lt;?php echo $upload['urlPath'];?&gt;" width = "71" height = "54" alt = "" /&gt;<br />     &lt;?php foreach ($home_pageRecord['images'] as $upload): ?&gt;<br />     &lt;img src = "&lt;?php echo $upload['urlPath'];?&gt;" width = "71" height = "54" alt = "" /&gt;<br />     &lt;?php foreach ($home_pageRecord['images'] as $upload): ?&gt;<br />     &lt;img src = "&lt;?php echo $upload['urlPath'];?&gt;" width = "71" height = "54" alt = "" /&gt;<br />   &lt;?php endforeach ?&gt;&lt;/a&gt;&lt;/div&gt;</code></p>

<p>I have an image that is loading correctly on about page.  code looks like this. </p>
<p><code>&lt;p&gt;&lt;?php foreach ($aboutRecord['images'] as $index =&gt; $upload): ?&gt;<br />                     &lt;img src="&lt;?php echo $upload['urlPath'] ?&gt;" width="390" height="243" alt="" /&gt;<br />                                         &lt;?php endforeach ?&gt;&lt;/p&gt;</code></p>
<p>sory not a php guy, just muckin through this. </p>
<p>ko19</p>]]></description>
          <pubDate>Wed, 19 Jun 2013 11:10:38 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231016#post2231016</guid>
        </item>
                <item>
          <title>images not viewing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231009#post2231009</link>
          <description><![CDATA[<p>Hi,</p>
<p>The error here means that there is no field called "images" in home_page section of the CMS.  I would first check that section and make sure that the name is right.  That should take care of the issue.  Also, you won't need to repeat the foreach loop 3 times.  The loop means that it will output all of the uploads in that field.  If you duplicate the code 3 times, then you will get all the images repeated.</p>

<p>Hope this helps</p>]]></description>
          <pubDate>Wed, 19 Jun 2013 09:42:28 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231009#post2231009</guid>
        </item>
                <item>
          <title>images not viewing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2231000#post2231000</link>
          <description><![CDATA[<p>Hi Jason,</p>
<p>I used the code you sent as follows:</p>

<p>        &lt;div id="lower_boxcontain"&gt;  &lt;?php foreach ($home_pageRecord['images'] as $upload): ?&gt;<br />    &lt;img src = "&lt;?php echo $upload['urlPath'];?&gt;" width = "71" height = "54" alt = "" /&gt;<br />  &lt;?php endforeach ?&gt;<br />                                          &lt;?php foreach ($home_pageRecord['images'] as $upload): ?&gt;<br />    &lt;img src = "&lt;?php echo $upload['urlPath'];?&gt;" width = "71" height = "54" alt = "" /&gt;<br />  &lt;?php endforeach ?&gt;<br />                                          &lt;?php foreach ($home_pageRecord['images'] as $upload): ?&gt;<br />    &lt;img src = "&lt;?php echo $upload['urlPath'];?&gt;" width = "71" height = "54" alt = "" /&gt;<br />  &lt;?php endforeach ?&gt;<br />                                          &lt;?php foreach ($home_pageRecord['images'] as $upload): ?&gt;<br />    &lt;img src = "&lt;?php echo $upload['urlPath'];?&gt;" width = "71" height = "54" alt = "" /&gt;<br />  &lt;?php endforeach ?&gt;&lt;/a&gt;&lt;/div&gt;<br />      &lt;/div&gt;</p>

<p>Now I'm getting the following error when I load the page: </p>
<p>Notice: Undefined index: images in /home/enlig124/public_html/index.php on line 130 Warning: Invalid argument supplied for foreach() in /home/enlig124/public_html/index.php on line 130 Notice: Undefined index: images in /home/enlig124/public_html/index.php on line 133 Warning: Invalid argument supplied for foreach() in /home/enlig124/public_html/index.php on line 133 Notice: Undefined index: images in /home/enlig124/public_html/index.php on line 136 Warning: Invalid argument supplied for foreach() in /home/enlig124/public_html/index.php on line 136 Notice: Undefined index: images in /home/enlig124/public_html/index.php on line 139 Warning: Invalid argument supplied for foreach() in /home/enlig124/public_html/index.php on line 139</p>
<p>index available at:  <a href="http://enlightenthesoul.com/index.php" rel="nofollow">http://enlightenthesoul.com/index.php</a></p>
<p>Help!</p>
<p>Thanks, </p>
<p>ko19</p>


]]></description>
          <pubDate>Tue, 18 Jun 2013 20:01:20 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2231000#post2231000</guid>
        </item>
                <item>
          <title>images not viewing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2230997#post2230997</link>
          <description><![CDATA[<p>OK, thanks Jason - I will give this a go :)</p>]]></description>
          <pubDate>Tue, 18 Jun 2013 13:02:01 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2230997#post2230997</guid>
        </item>
                <item>
          <title>images not viewing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2230988#post2230988</link>
          <description><![CDATA[<p>Hi Eldon,</p>
<p>I took a look at your code and found a couple of things.  The first was a simple typo in the code.  Your home page record set was in a variable called $home_pageRecord, but the code you were using $homepageRecord when trying to output images.</p>
<p>The other problem is that the code $home_pageRecord['images'][0] pulls the first image element out of the array, but it doesn't remove that element.  So if you repeat this line multiple times, it will just output the same image.  The best solution here would be to use a foreach loop like this:</p>

<p><code>&lt;div id="lower_boxcontain"&gt;<br />  &lt;?php foreach ($home_pageRecord['images'] as $upload): ?&gt;<br />    &lt;img src = "&lt;?php echo $upload['urlPath'];?&gt;" width = "71" height = "54" alt = "" /&gt;<br />  &lt;?php endforeach ?&gt;<br />&lt;/div&gt;</code></p>

<p>This will go through each element in the array, one at a time.  You don't have to worry about checking for a value first, because if there are no elements in the array at all, then the loop will never execute.</p>

<p>Hope this helps!</p>
]]></description>
          <pubDate>Tue, 18 Jun 2013 09:56:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2230988#post2230988</guid>
        </item>
                <item>
          <title>images not viewing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2230980#post2230980</link>
          <description><![CDATA[<p>Hi Greg,</p>

<p>They don't appear to be loading at all...code below:</p>

<p>&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br />&lt;?php<br />  <br />  // load viewer library<br />  $libraryPath = 'cmsAdmin/lib/viewer_functions.php';<br />  $dirsToCheck = array('/home/enlig124/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."); }<br /><br />  // load record from 'home_page'<br />  list($home_pageRecords, $home_pageMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'home_page',<br />    'where'       =&gt; '', // load first record<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />    'limit'       =&gt; '1',<br />  ));<br />  $home_pageRecord = @$home_pageRecords[0]; // get first record<br />  if (!$home_pageRecord) { dieWith404("Record not found!"); } // show error message if no record found<br /><br />?&gt;&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;title&gt;Tara Preston - Welcome to Enlighten The Soul&lt;/title&gt;<br />  &lt;meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /&gt;<br />  &lt;style type="text/css"&gt;<br />    body          { font-family: arial; }<br />    .instructions { border: 3px solid #000; background-color: #EEE; padding: 10px; text-align: left; margin: 25px}<br />  &lt;/style&gt;<br /> &lt;/head&gt;<br />&lt;body&gt;<br /><br />&lt;!doctype html&gt;<br />&lt;html&gt;<br />&lt;head&gt;<br />&lt;meta charset="utf-8"&gt;<br /><br />&lt;meta name="keywords" content="Akashic Record Readings, Akashic records, Akasha, soul healing, holistic healing, Intuitive Healing, energy healing, energy therapy, healing touch practitioner, authentic, soul-level, soul discovery, purpose, life purpose, soul purpose, heal, clear energetic blocks, soul realignment, intuitive, coaching, guidance, spiritual healing, remove blocks, clear patterns, life purpose, intuitive reading,  co-create, manifest, clear blocks, soul groups, inspired creative living, self-love, feminine flow, heart centered living, energetic alignment, success, passion, spirit guides, professional intuitive, healer, past life healing, tara preston, tara favreau, soul gifts, gifts, relationship healing, divine guidance, intuitive support, chakra healing, soul realignment pracitioner" /&gt;<br />&lt;meta name="description" content="Akashic Record Readings from Enlighten the Soul" /&gt;<br />&lt;meta name="author" content="Tara Preston  www.enlightenthesoul.com" /&gt;<br />&lt;meta name="copyright" content="www.enlightenthesoul.com, Tara Preston" /&gt;<br />&lt;meta name="distribution" content="Global" /&gt;<br />&lt;meta name="revisit-after" content="30 days" /&gt;<br />&lt;meta name="robots" content="home, follow" /&gt;<br />&lt;meta name="url" content="<a href="http://www.enlightenthesoul.com/" rel="nofollow">http://www.enlightenthesoul.com/</a>" /&gt;<br />&lt;meta name="language" content="English" /&gt;<br /><br /><br />&lt;meta name="viewport" content="width=device-width"&gt;<br /><br />&lt;link rel="canonical" href=""&gt;<br />&lt;link rel="icon" type="image/ico" href="favicon.ico"&gt;<br />&lt;link href="style.css" rel="stylesheet" type="text/css"&gt;<br />        &lt;link rel="stylesheet" href="colorbox.css" /&gt;<br />        &lt;script src="js/jquery.min.js"&gt;&lt;/script&gt;<br />        &lt;script src="js/jquery.colorbox.js"&gt;&lt;/script&gt;<br />        &lt;script&gt;<br />            $(document).ready(function(){<br />                //Examples of how to assign the Colorbox event to elements<br />                $(".vimeo").colorbox({iframe:true, innerWidth:500, innerHeight:409});<br />                $(".iframe").colorbox({iframe:true, width:580, height:870});<br />                $(".iframe1").colorbox({iframe:true, width:624, height:360});<br />                $(".iframe2").colorbox({iframe:true, width:580, height:1060});<br />                $(".callbacks").colorbox({<br />                    onOpen:function(){ alert('onOpen: colorbox is about to open'); },<br />                    onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },<br />                    onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },<br />                    onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },<br />                    onClosed:function(){ alert('onClosed: colorbox has completely closed'); }<br />                });<br /><br />                $('.non-retina').colorbox({rel:'group5', transition:'none'})<br />                $('.retina').colorbox({rel:'group5', transition:'none', retinaImage:true, retinaUrl:true});<br />                <br />                //Example of preserving a JavaScript event for inline calls.<br />                $("#click").click(function(){ <br />                    $('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");<br />                    return false;<br />                });<br />            });<br />        &lt;/script&gt;<br /><br />&lt;body&gt;<br />&lt;div id="main_contain"&gt;<br />  &lt;div id="inner_contain"&gt;<br />    &lt;div id="header"&gt;<br />      &lt;div id="logo"&gt;&lt;img src="images/logo.png" width="518" height="367" usemap="#Map"&gt;<br />        &lt;map name="Map"&gt;<br />          &lt;area shape="rect" coords="100,8,466,156" href="index.php"&gt;<br />        &lt;/map&gt;<br />      &lt;/div&gt;<br />      &lt;div id="right_header"&gt;<br />        &lt;div id="right_text"&gt;&lt;?php echo htmlencode($home_pageRecord['right_header_text']) ?&gt;&lt;/div&gt;<br />      &lt;/div&gt;<br />      &lt;div id="navigation"&gt;<br />        &lt;div id="main_menu"&gt;<br />        &lt;ul id="coolMenu"&gt;<br />        <br />        &lt;li&gt;&lt;a href="index.php" class="current_page" style="color:#000;"&gt;Home&lt;/a&gt;&lt;/li&gt;<br />        &lt;li&gt;&lt;a class='iframe' href="about.php"&gt;About&lt;/a&gt;&lt;/li&gt;<br />        &lt;li&gt;&lt;a href="blog.php"&gt;Blog&lt;/a&gt;&lt;/li&gt;<br />        &lt;li&gt;&lt;a href="service.php"&gt;Services&lt;/a&gt;<br />         &lt;!-- &lt;ul class="noJS"&gt;<br />                &lt;li&gt;&lt;a href="full_story.html"&gt;Full Story&lt;/a&gt;&lt;/li&gt;<br />                    &lt;li&gt;&lt;a class="various3" href="faq.html"&gt;FAQ&lt;/a&gt;&lt;/li&gt;<br />                    <br />              &lt;/ul&gt;--&gt;<br />        &lt;/li&gt;<br />        &lt;li&gt;&lt;a class='iframe2' href="testimonial.php"&gt;Testimonials&lt;/a&gt;&lt;/li&gt;<br />        &lt;li&gt;&lt;a href="contact.php"&gt;Connect&lt;/a&gt;&lt;/li&gt;<br />&lt;/ul&gt;<br />        <br />        &lt;/div&gt;<br />      &lt;/div&gt;<br />    &lt;/div&gt;<br />    &lt;div id="lower_main"&gt;<br />      &lt;div id="left_side"&gt;<br />        &lt;div id="left_heading1"&gt;&lt;?php echo htmlencode($home_pageRecord['top_text']) ?&gt;&lt;/div&gt;<br />        &lt;div id="welcome_contain"&gt;<br />          &lt;div class="page_heading"&gt;&lt;?php echo htmlencode($home_pageRecord['title']) ?&gt;&lt;/div&gt;<br />          &lt;div class="page_textcontain"&gt;<br />          &lt;p&gt;&lt;?php echo $home_pageRecord['opening_paragraph']; ?&gt;&lt;/p&gt;<br />          <br />          &lt;p class="test_text1"&gt;&lt;em&gt;&lt;?php echo htmlencode($home_pageRecord['middle_quotations']) ?&gt;&lt;/em&gt;&lt;/p&gt;<br />          <br />          &lt;p&gt;&lt;?php echo $home_pageRecord['remaining_paragraphs']; ?&gt;&lt;/p&gt;<br />  <br />          &lt;/div&gt;<br />        &lt;/div&gt;<br />        &lt;div id="lower_boxcontain"&gt;&lt;?php if ($upload = @$homepageRecord['images'][0]):?&gt;<br />                                        &lt;img src="&lt;?php echo $upload['urlPath'] ?&gt;" width="71" height="54" alt="" /&gt;<br />                                        &lt;?php endif?&gt;<br />                                        &lt;?php if ($upload = @$homepageRecord['images'][0]):?&gt;<br />                                        &lt;img src="&lt;?php echo $upload['urlPath'] ?&gt;" width="71" height="54" alt="" /&gt;<br />                                        &lt;?php endif?&gt;<br />                                        &lt;?php if ($upload = @$homepageRecord['images'][0]):?&gt;<br />                                        &lt;img src="&lt;?php echo $upload['urlPath'] ?&gt;" width="71" height="54" alt="" /&gt;<br />                                        &lt;?php endif?&gt;<br />                                        &lt;?php if ($upload = @$homepageRecord['images'][0]):?&gt;<br />                                        &lt;img src="&lt;?php echo $upload['urlPath'] ?&gt;" width="71" height="54" alt="" /&gt;<br />                                        &lt;?php endif?&gt;&lt;/a&gt;&lt;/div&gt;<br />      &lt;/div&gt;<br />      &lt;div id="right_sidebar"&gt;<br />        &lt;div class="widget_contain"&gt;&lt;a class='iframe1' href="youtube.html" title="youtube"&gt;&lt;img src="images/youtube.jpg" width="235" height="151"&gt;&lt;/a&gt;&lt;/div&gt;<br />        &lt;div class="widget_contain1"&gt;<br />          &lt;div class="widget_text"&gt;&lt;?php echo htmlencode($home_pageRecord['subscribe']) ?&gt;&lt;/div&gt;<br />          &lt;div class="widget_form"&gt;<br /><br /><br />&lt;?php<br /><br />if(!isset($_GET['action'])) :<br /><br />?&gt;<br /><br />            &lt;form action="<a href="http://enlightenthesoul.us6.list-manage.com/subscribe/post?u=3cbb55f97c8a76ef6bab792b3&amp;amp;id=2237a131b6" rel="nofollow">http://enlightenthesoul.us6.list-manage.com/subscribe/post?u=3cbb55f97c8a76ef6bab792b3&amp;amp;id=2237a131b6</a>" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" novalidate&gt;<br /><br />               &lt;input type="email" name="EMAIL" class="inbox" id="mce-EMAIL" value="your@email.here" onblur="if(this.value=='') this.value='your@email.here';" onfocus="if(this.value=='your@email.here') this.value='';" type="text"&gt;<br />              <br />               &lt;div id="form_arrow"&gt;&lt;img src="images/form_arrow.png" width="46" height="37"&gt;&lt;/div&gt; <br />               &lt;div class="widget_submit"&gt;<br />                    &lt;input type="image" name="imageField" name="subscribe" id="mc-embedded-subscribe" src="images/submit.png"&gt;<br />               &lt;/div&gt;<br /><br />            &lt;/form&gt;<br /><br />&lt;?php<br /><br />endif;<br /><br />if(isset($_GET['action'])) :<br /><br />?&gt;<br /><br />&lt;p align='center'&gt;Thank you for subscribing! Please check your email to confirm.&lt;p&gt;<br /><br />&lt;?php<br /><br />endif;<br /><br />?&gt;<br /><br />          &lt;/div&gt;<br />        &lt;/div&gt;<br />        &lt;div class="widget_contain"&gt;&lt;iframe src="//www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2FEnlighten-The-Soul%2F326234864064583%3Ffref%3Dts&amp;amp;width=235&amp;amp;height=290&amp;amp;show_faces=true&amp;amp;colorscheme=light&amp;amp;stream=false&amp;amp;border_color=%23ccc&amp;amp;header=true" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:235px; height:290px;" allowTransparency="true"&gt;&lt;/iframe&gt;&lt;/div&gt;<br />      &lt;/div&gt;<br />    &lt;/div&gt;<br />    &lt;div id="lower_socialcontain"&gt;&lt;a href="#"&gt;&lt;img src="images/rss.png" width="30" height="30"&gt;&lt;/a&gt;&lt;a href="<a href="https://twitter.com/ElightentheSoul" rel="nofollow">https://twitter.com/ElightentheSoul</a>" target="_blank"&gt;&lt;img src="images/twitter.png" width="30" height="30"&gt;&lt;/a&gt;&lt;a href="<a href="http://www.youtube.com/channel/UCd8MdEUYkeUHjHPtl4juyOA" rel="nofollow">http://www.youtube.com/channel/UCd8MdEUYkeUHjHPtl4juyOA</a>" target="_blank"&gt;&lt;img src="images/you_tube.png" width="30" height="30"&gt;&lt;/a&gt;&lt;a href="<a href="https://www.facebook.com/pages/Enlighten-The-Soul/326234864064583" rel="nofollow">https://www.facebook.com/pages/Enlighten-The-Soul/326234864064583</a>" target="_blank"&gt;&lt;img src="images/facebook.png" width="30" height="30"&gt;&lt;/a&gt;&lt;/div&gt;<br />  &lt;/div&gt;<br />  &lt;div id="fot_contain"&gt;<br />    &lt;div id="fot_innercontain"&gt;<br />      &lt;div id="fot_innermain"&gt;<br />        &lt;div id="left_fotcontain"&gt;<br />          &lt;div id="pack_img"&gt;&lt;img src="images/pack_img.png" width="134" height="133"&gt;&lt;/div&gt;<br />          &lt;div id="fot_formcontain"&gt;<br />            &lt;div id="fot_formhead"&gt;&lt;?php echo htmlencode($home_pageRecord['ebook_line_1']) ?&gt;&lt;/div&gt;<br />            &lt;div id="fot_formhead1"&gt;&lt;?php echo htmlencode($home_pageRecord['ebook_line_2']) ?&gt;&lt;/div&gt;<br />            &lt;div id="fot_fcontain"&gt;<br />              &lt;form name="form2" method="post" action=""&gt;<br />               &lt;input name="textfield" class="inbox1" id="textfield" value="Name" onblur="if(this.value=='') this.value='Name';" onfocus="if(this.value=='Name') this.value='';" type="text"&gt;<br />               <br />                &lt;input name="textfield" class="inbox1" id="textfield" value="Email" onblur="if(this.value=='') this.value='Email';" onfocus="if(this.value=='Email') this.value='';" type="text"&gt;<br />                <br />                &lt;div class="widget_submit1"&gt;<br />                 &lt;input type="image" name="imageField" id="imageField" src="images/submit.png"&gt;<br />               &lt;/div&gt;<br />              &lt;/form&gt;<br />            &lt;/div&gt;<br />          &lt;/div&gt;<br />        &lt;/div&gt;<br />        &lt;div id="right_fotcontain"&gt;<br />          &lt;div id="fot_logo"&gt;&lt;img src="images/fot_logo.png" width="163" height="63" usemap="#Map2"&gt;<br />            &lt;map name="Map2"&gt;<br />              &lt;area shape="rect" coords="9,7,154,58" href="index.php"&gt;<br />            &lt;/map&gt;<br />          &lt;/div&gt;<br />        &lt;div id="copyright"&gt;Copyright © 2013 Enlighten &lt;br&gt;The Soul<br />All Rights Reserved.&lt;/div&gt;<br />        &lt;/div&gt;<br />      &lt;/div&gt;<br />    &lt;/div&gt;<br />    &lt;div id="fot_cor"&gt;&lt;img src="images/site_design.png" width="86" height="42" usemap="#Map3"&gt;<br />      &lt;map name="Map3"&gt;<br />        &lt;area shape="rect" coords="4,5,82,38" href="#"&gt;<br />      &lt;/map&gt;<br />    &lt;/div&gt;<br />  &lt;/div&gt;<br />&lt;/div&gt;<br /><br />&lt;script type="text/javascript"&gt;<br /><br />  var _gaq = _gaq || [];<br />  _gaq.push(['_setAccount', 'UA-40427183-1']);<br />  _gaq.push(['_trackPageview']);<br /><br />  (function() {<br />    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;<br />    ga.src = ('https:' == document.location.protocol ? '<a href="https://ssl" rel="nofollow">https://ssl</a>' : '<a href="http://www" rel="nofollow">http://www</a>') + '.google-analytics.com/ga.js';<br />    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);<br />  })();<br /><br />&lt;/script&gt;<br />&lt;/body&gt;<br />&lt;/html&gt;</p>

<p>Thankyou,</p>
<p>eldon</p>]]></description>
          <pubDate>Mon, 17 Jun 2013 13:32:49 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2230980#post2230980</guid>
        </item>
                <item>
          <title>images not viewing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2230972#post2230972</link>
          <description><![CDATA[<p>Hi Eldon,</p>
<p>In what way is it not working? Is the image tag not being created at all, or is it not loading the image inside of the image tag?</p>
<p>Would it be possible to attach or post the entire code for the page?</p>
<p>Thanks!</p>
<p>Greg</p>]]></description>
          <pubDate>Mon, 17 Jun 2013 09:19:46 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2230972#post2230972</guid>
        </item>
                <item>
          <title>images not viewing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2230967#post2230967</link>
          <description><![CDATA[<p>Hi all,</p>
<p>here is my block of code for displaying images on my homepage:</p>

<p>&lt;?php if ($upload = @$homepageRecord['images'][0]):?&gt;<br />                                        &lt;img src="&lt;?php echo $upload['urlPath'] ?&gt;" width="71" height="54" alt="" /&gt;<br />                                        &lt;?php endif?&gt;</p>

<p>is there any reason why this is not working?  :)</p>
<p>Many Thanks, </p>
<p>eldon</p>]]></description>
          <pubDate>Sun, 16 Jun 2013 23:18:28 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2230967#post2230967</guid>
        </item>
              </channel>
    </rss>
  