<?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%3Ablind2uriz</link>
        <description></description>
        <pubDate>Wed, 13 May 2026 17:02:44 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Ablind2uriz&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Menu Groups</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2213042#post2213042</link>
          <description><![CDATA[Is there a way to put menu groups into groups themselves? I wanted to put several menu groups together to better organize my sidebar in the Admin area. Any help is appreciated.<br />]]></description>
          <pubDate>Tue, 06 Sep 2011 09:50:49 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2213042#post2213042</guid>
        </item>
                <item>
          <title>jquery slider</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2212992#post2212992</link>
          <description><![CDATA[I'm trying to use this jquery slideshow on a page I'm currently working on. The user wants to have the ability to add pictures w/ text on the overlay of the image. So in CMSBuilder I'm thinking that I will have to have an upload image field and a title field, where they can add the text they want to go along w/ the image. Here's the link... <br /><br /><a target="_blank" href="http://www.serie3.info/s3slider/">http://www.serie3.info/s3slider/</a><br /><br />Here's the HMTL<br /><br />&lt;div id=&quot;s3slider&quot;&gt;<br />   &lt;ul id=&quot;s3sliderContent&quot;&gt;<br />      &lt;li class=&quot;s3sliderImage&quot;&gt;<br />          &lt;img src=&quot;#&quot; /&gt;<br />          &lt;span&gt;Your text comes here&lt;/span&gt;<br />      &lt;/li&gt;<br />      &lt;li class=&quot;s3sliderImage&quot;&gt;<br />          &lt;img src=&quot;#&quot; /&gt;<br />          &lt;span&gt;Your text comes here&lt;/span&gt;<br />      &lt;/li&gt;<br />      &lt;div class=&quot;clear s3sliderImage&quot;&gt;&lt;/div&gt;<br />   &lt;/ul&gt;<br />&lt;/div&gt;<br /><br />Does anyone know how to get this to work w/ CMSBuilder? Any help would be appreciated.<br />]]></description>
          <pubDate>Wed, 31 Aug 2011 10:43:35 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2212992#post2212992</guid>
        </item>
                <item>
          <title>Re: [gkornbluth] Multiple records from different editors on same page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2210461#post2210461</link>
          <description><![CDATA[Got it! Thanks Jerry.<br />]]></description>
          <pubDate>Tue, 05 Apr 2011 09:28:53 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2210461#post2210461</guid>
        </item>
                <item>
          <title>Re: [gkornbluth] Multiple records from different editors on same page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2210457#post2210457</link>
          <description><![CDATA[Thanks Jerry, it has. I do have another problem that seems like it might be easy, w/ the same code, I'm trying to get more than one &quot;News&quot; event to show on the page, actually I want 3 to show. How would I go about this, I can't seem to find an answer. Thanks for any help<br />]]></description>
          <pubDate>Tue, 05 Apr 2011 07:22:03 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2210457#post2210457</guid>
        </item>
                <item>
          <title>Re: [blind2uriz] Multiple records from different editors on same page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2210396#post2210396</link>
          <description><![CDATA[Just to give an update. I fixed the problem. Here is the header...<br /><br />&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br />&lt;?php<br />  <br /><br />  // load viewer library<br />  $libraryPath = 'cmsAdmin/lib/viewer_functions.php';<br />  $dirsToCheck = array('/home/content/s/t/u/stud74/html/','','../','../../','../../../');<br />  foreach ($dirsToCheck as $dir) { if (@include_once(&quot;$dir$libraryPath&quot;)) { break; }}<br />  if (!function_exists('getRecords')) { die(&quot;Couldn't load viewer library, check filepath in sourcecode.&quot;); }<br /><br />  // load records<br />  list($mainRecords, $mainMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'main',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    ));<br />  $mainRecord = @$mainRecords[0]; // get first record<br /><br />  // show error message if no matching record is found<br />  if (!$mainRecord) {<br />    header(&quot;HTTP/1.0 404 Not Found&quot;);<br />    print &quot;Record not found!&quot;;<br />    exit;<br />  }<br />  <br />   // load records<br />  list($newsRecords, $newsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'news', <br />  ));<br />  $newsRecord = @$newsRecords[0]; // get first record  <br /><br />?&gt;<br /><br />and here is what I put in the body....<br /><br />&lt;?php echo $mainRecord['content'] ?&gt;<br />&lt;?php echo $newsRecord['title'] ?&gt;&lt;/p&gt;<br />&lt;p&gt;&lt;?php echo date(&quot;D, M jS, Y g:i:s a&quot;, strtotime($newsRecord['date'])) ?&gt;&lt;/p&gt;<br />&lt;p&gt;&lt;a href=&quot;&lt;?php echo $newsRecord['_link'] ?&gt;&quot;&gt;Read More&lt;/a&gt;&lt;br/&gt;<br /><br />Thanks for your info and help. I'm sure I'll need more in the future.<br /><br />Jerry, I found the info out that helped me in your cookbook.<br /><br />Thanks,<br />]]></description>
          <pubDate>Fri, 01 Apr 2011 21:52:35 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2210396#post2210396</guid>
        </item>
                <item>
          <title>Re: [robin] Multiple records from different editors on same page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2210395#post2210395</link>
          <description><![CDATA[I tried both solutions but no change.<br /><br />Hey Jerry, I bought the cms cookbook yesterday, but I'm not finding any examples so far, still digging around.<br /><br />Any more thoughts? Do you need me to post anything else code wise? Thanks for all your help.<br />]]></description>
          <pubDate>Fri, 01 Apr 2011 19:42:38 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2210395#post2210395</guid>
        </item>
                <item>
          <title>Multiple records from different editors on same page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2210371#post2210371</link>
          <description><![CDATA[I've look over the forums to try and figure this out, but haven't gotten it to work yet. I have my index.php page that I want to display &quot;main content&quot; on and &quot;current news&quot; on as well. How do I go about this? I have a section editor of the main content, as well as a section editor for the news. The header code is...<br /><br />&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br />&lt;?php<br />  <br /><br />  // load viewer library<br />  $libraryPath = 'cmsAdmin/lib/viewer_functions.php';<br />  $dirsToCheck = array('/home/content/s/t/u/stud74/html/','','../','../../','../../../');<br />  foreach ($dirsToCheck as $dir) { if (@include_once(&quot;$dir$libraryPath&quot;)) { break; }}<br />  if (!function_exists('getRecords')) { die(&quot;Couldn't load viewer library, check filepath in sourcecode.&quot;); }<br /><br />  // load main<br />  list($mainRecords, $mainMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'main',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '1',<br />  ));<br />  $mainRecord = @$mainRecords[0]; // get first record<br />  <br />  // load news<br />  list($newsRecords, $newsMetaData) = getRecords(array(<br />    'tableName' =&gt; 'news', <br />    'perPage' =&gt; '1', <br />  )); <br /><br />  // show error message if no matching record is found<br />  if (!$mainRecord) {<br />    header(&quot;HTTP/1.0 404 Not Found&quot;);<br />    print &quot;Record not found!&quot;;<br />    exit;<br />  }<br /><br />?&gt;<br /><br />and what I have in the body is...<br />&lt;p&gt;&lt;?php echo $mainRecord['content'] ?&gt;&lt;/p&gt;<br /><b>(for the main content)</b><br />and...<br />&lt;p&gt;&lt;?php echo $newsRecord['title'] ?&gt;&lt;/p&gt;<br />&lt;p&gt;&lt;?php echo $newsRecord['summary'] ?&gt;&lt;/p&gt;<br />&lt;p&gt;&lt;a href=&quot;&lt;?php echo $newsRecords['_link'] ?&gt;&quot;&gt;Read More&lt;/a&gt;&lt;br/&gt;&lt;/p&gt;<br /><b>(for the news)</b><br /><br />The main content displays fine, but I'm getting this error on the news section...<br />Notice: Undefined variable: newsRecord in /home/content/s/t/u/stud74/html/jacob/index.php on line 160<br />Notice: Undefined variable: newsRecord in /home/content/s/t/u/stud74/html/jacob/index.php on line 161<br />Read More<br /><br />Here's a link to the site<br /><a target="_blank" href="http://www.interdimensionaldesigns.com/jacob/index.php">http://www.interdimensionaldesigns.com/jacob/index.php</a><br /><br />I feel like this is a simple fix, but haven't been able to figure it out. Thanks for any help.<br /><br />John<br />]]></description>
          <pubDate>Thu, 31 Mar 2011 11:49:23 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2210371#post2210371</guid>
        </item>
                <item>
          <title>Re: [gkornbluth] IE problem</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203754#post2203754</link>
          <description><![CDATA[Hey Jerry,<br /><br />Not sure what happened with the listings they posted, but I went back and deleted what my client has posted and re input the info. Everything works fine now. I did take your advice and made some of the listings hidden. That seemed to fix the problem. It was weird though, I hid the first 2 listings and then the fourth. If I left the third showing it worked. I have attached a screen cap. Thanks for the reply and help. If the problem comes again I'll repost and dig further. Have a good day.<br /><br />John<br />]]></description>
          <pubDate>Thu, 29 Apr 2010 12:32:30 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203754#post2203754</guid>
        </item>
                <item>
          <title>IE problem</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2203746#post2203746</link>
          <description><![CDATA[I have been contacted by a client that is having a problem w/ their website. The page shows fine in Chrome/Firefox, but in IE there is a problem. Here is the link...<br /><a target="_blank" href="http://www.greenwaysrealestateandauction.com/listingList.php?page=1">http://www.greenwaysrealestateandauction.com/listingList.php?page=1</a><br />I went and looked in CMS Builder and couldn't find anything that they may have typed in wrong. If you notice in IE that the first listing that is messed up, the &quot;Russell Drive&quot; listing, which has the endif on it, the description is from another listing on down the page displayed in Firefox/Chrome. Also, when you actually click on the &quot;view listing&quot; on the &quot;Russell Drive&quot; link, that page doesn't display correct either in IE. Anyone have any ideas as to what might be happening? Haven't had a problem w/ the website since deploying until now. So I was thinking it was something that they may have typed in CMS Builder to make it do this. Any help is greatly appreciated. Thanks.<br /><br />John<br />]]></description>
          <pubDate>Thu, 29 Apr 2010 08:54:06 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2203746#post2203746</guid>
        </item>
                <item>
          <title>Re: [Dave] Changed DNS</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201694#post2201694</link>
          <description><![CDATA[Thanks Dave,<br /><br />The viewer URLs is what it was. Didn't happen to look there. Thanks again for your help.<br /><br />John<br />]]></description>
          <pubDate>Mon, 08 Feb 2010 08:33:14 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201694#post2201694</guid>
        </item>
                <item>
          <title>Changed DNS</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201675#post2201675</link>
          <description><![CDATA[I have a question and I think it is similar to this post...<br /><a target="_blank" href="http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/gforum.cgi?post=61444;search_string=change%20domains;guest=60186647&amp;t=search_engine#61444">http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/gforum.cgi?post=61444;search_string=change%20domains;guest=60186647&amp;t=search_engine#61444</a><br />which I've read but still can't figure out. I have a hosting account that was under idsitepreview.com, I changed the hosting account to my other domain greenwaysrealestateandauction.com. Now all the records in the database are still pointing to idsitepreview.com.....here's an example....<a target="_blank" href="http://www.greenwaysrealestateandauction.com/listingList.php">http://www.greenwaysrealestateandauction.com/listingList.php</a><br />When you hover over the image of the property you can see the idsitepreview link still there. What do I need to do to get this to link to greenwaysrealestateandaucion? I am looking into the database, but not real sure what I need to do. Thanks for any help.<br />]]></description>
          <pubDate>Sun, 07 Feb 2010 23:11:48 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201675#post2201675</guid>
        </item>
                <item>
          <title>Re: [Dave] Question</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198476#post2198476</link>
          <description><![CDATA[Thanks so much for the help guys. Worked like a charm Dave. Have a good weekend.<br /><br />-John<br />]]></description>
          <pubDate>Fri, 31 Jul 2009 22:49:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198476#post2198476</guid>
        </item>
                <item>
          <title>Question</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198453#post2198453</link>
          <description><![CDATA[I am working on a Realty site. I have 2 pages, one with current listings and one with sold listings. In CMSB I have a list drop box that lets you choose if it's avaliable, pending sale, or sold. I want to be able to have a listing move to the sold section when it is marked sold. Is there a way to do this? Thanks for your help.<br />]]></description>
          <pubDate>Thu, 30 Jul 2009 14:01:10 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198453#post2198453</guid>
        </item>
                <item>
          <title>Realty question</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198124#post2198124</link>
          <description><![CDATA[I was wondering if anyone could help me out. I am working on a Realty website, right now specifically the &quot;sold listings&quot; section. I want to show the sold listings by year, as in &quot;sold in 2009&quot;, &quot;sold in 2008&quot; on the page. Does anyone have any good ideas how to go about doing this? It seems like I should know this, but can't really figure it out. I have attached an example of what I'm talking about. Thanks in advance. <br /><br />John<br />]]></description>
          <pubDate>Tue, 07 Jul 2009 21:30:25 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198124#post2198124</guid>
        </item>
                <item>
          <title>Pull text from another website</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2197913#post2197913</link>
          <description><![CDATA[I have been trying to figure this one out for awhile now. Does anyone know how to pull just text from another website w/o bringing the pictures over using php. I used this and got the whole page w/ pictures.<br /><br />&lt;?php $url=&quot;http://www.url-here.html&quot;;<br />$ch = curl_init();<br />curl_setopt($ch, CURLOPT_URL, $url);<br />curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);<br />$data = curl_exec ($ch);<br />curl_close ($ch);<br />// you can do something with $data like explode(); or a preg match regex to get the exact information you need<br />echo $data; ?&gt;<br /><br />Any help is greatly appreciated. Thanks in advance. <br /><br />John<br />]]></description>
          <pubDate>Tue, 23 Jun 2009 21:12:59 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2197913#post2197913</guid>
        </item>
                <item>
          <title>Re: [sagentic] Importing database to CMSB</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2197710#post2197710</link>
          <description><![CDATA[Thanks for the info Kenny, I'll have a look at it this evening.<br /><br />John<br />]]></description>
          <pubDate>Wed, 10 Jun 2009 12:30:08 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2197710#post2197710</guid>
        </item>
                <item>
          <title>Re: [Damon] Importing database to CMSB</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2197695#post2197695</link>
          <description><![CDATA[Hey Damon,<br /><br />Thanks for the reply. I received the CSV file from the company that was handling my clients website before. I imported the database in phpMyAdmin, but recieved this error when importing.....<br /><br />Error<br /><br />SQL query:<br /><br />&quot;1&quot;;<br /><br />MySQL said: Documentation<br />#1064 - You have an error in your SQL syntax; check the manual that corresponds<br />to your MySQL server version for the right syntax to use near '&quot;1&quot;' at line 1 <br /><br />This is the first time ever importing anything into a database, and I'm very new to the whole database thing anyway. Could you point me in the right direction. Thanks for any help you can provide. I can send you the CSV file if needed. Just let me know. Thanks again<br /><br />John<br />]]></description>
          <pubDate>Mon, 08 Jun 2009 19:03:11 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2197695#post2197695</guid>
        </item>
                <item>
          <title>Importing database to CMSB</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2197312#post2197312</link>
          <description><![CDATA[Hey guys, I am taking over a website for a client. I have redesigned the site and need to get the database information that is already on the web. What is the best way to go about this? I am about to contact the current web designer who said he would give me any help. What I should ask him to do? What is the best way to go about this? As in exporting/importing the database, things of that nature. Thanks for any help. <br /><br />John<br />]]></description>
          <pubDate>Tue, 12 May 2009 11:36:04 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2197312#post2197312</guid>
        </item>
                <item>
          <title>Re: [ross] Help with Google Maps</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196087#post2196087</link>
          <description><![CDATA[I filled in all the $record's w/ $listingRecord and it still doesn't work. When I view source on www.idsitepreview.com/map.php, this line is working correctly:<br /><br />var marker = createMarker(point,'&lt;?php echo htmlspecialchars($listingRecord['address'], ENT_QUOTES) ?&gt;, &lt;?php echo htmlspecialchars($listingRecord['city'], ENT_QUOTES) ?&gt;')<br /><br />but I still can't get anything on the GLatLng line. Any more thoughts? Thanks.<br /><br />John<br />]]></description>
          <pubDate>Mon, 02 Mar 2009 16:51:23 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196087#post2196087</guid>
        </item>
                <item>
          <title>Re: [ross] Help with Google Maps</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196062#post2196062</link>
          <description><![CDATA[Here is what I have right now. I've been trying all weekend to figure this out but can't. Hopefully someone can figure this out. Here's the source from uploaded map.php:<br /><br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; <br />  &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt; <br />&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt; <br />  &lt;head&gt; <br />    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=utf-8&quot;/&gt; <br />    &lt;title&gt;Google Maps Example&lt;/title&gt; <br />    &lt;script src=&quot;http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=ABQIAAAAzWpdtAJy15_mFvJb9uOTTxSpUoc7Yr5GTKWfF5EG52h_OrBQ8BQO9BWmFxt8DPC9oYhAuCCswFK5YQ&quot; <br />      type=&quot;text/javascript&quot;&gt;&lt;/script&gt; <br />    &lt;script type=&quot;text/javascript&quot;&gt; <br /> <br />    //&lt;![CDATA[ <br /> <br />    function load() { <br />      if (GBrowserIsCompatible()) { <br /> <br />      function createMarker(point,html) { <br />        var marker = new GMarker(point); <br />        GEvent.addListener(marker, &quot;click&quot;, function() { <br />          marker.openInfoWindowHtml(html); <br />        }); <br />        return marker; <br />      } <br />       <br />       <br />        var map = new GMap2(document.getElementById(&quot;map&quot;)); <br />        map.setCenter(new GLatLng(37.778855861649966, -79.98664855957031), 13); <br /> <br />      } <br />       <br />       <br /> <br /> <br />      var point = new GLatLng(,); <br />      var marker = createMarker(point,'107 N. Wills Ave., Covington') <br />      map.addOverlay(marker); <br />       <br /> <br /> <br />} <br />     <br /> <br />    //]]&gt; <br />    &lt;/script&gt; <br />  &lt;/head&gt; <br />  &lt;body onload=&quot;load()&quot; onunload=&quot;GUnload()&quot;&gt; <br />    &lt;div id=&quot;map&quot; style=&quot;width: 500px; height: 300px&quot;&gt;&lt;/div&gt; <br />     <br /> <br />     <br />  &lt;/body&gt; <br />&lt;/html&gt;<br /><br />Here's the code of map.php in dreamweaver:<br /><br />&lt;?php<br />  <br />  require_once &quot;/home/content/g/r/e/greenways1/html/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($listingRecords, $listingMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'listing',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '1',<br />  ));<br />  $listingRecord = @$listingRecords[0]; // get first record<br /><br />?&gt;<br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; <br />  &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt; <br />&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt; <br />  &lt;head&gt; <br />    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=utf-8&quot;/&gt; <br />    &lt;title&gt;Google Maps Example&lt;/title&gt; <br />    &lt;script src=&quot;http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=ABQIAAAAzWpdtAJy15_mFvJb9uOTTxSpUoc7Yr5GTKWfF5EG52h_OrBQ8BQO9BWmFxt8DPC9oYhAuCCswFK5YQ&quot; <br />      type=&quot;text/javascript&quot;&gt;&lt;/script&gt; <br />    &lt;script type=&quot;text/javascript&quot;&gt; <br /> <br />    //&lt;![CDATA[ <br /> <br />    function load() { <br />      if (GBrowserIsCompatible()) { <br /> <br />      function createMarker(point,html) { <br />        var marker = new GMarker(point); <br />        GEvent.addListener(marker, &quot;click&quot;, function() { <br />          marker.openInfoWindowHtml(html); <br />        }); <br />        return marker; <br />      } <br />       <br />       <br />        var map = new GMap2(document.getElementById(&quot;map&quot;)); <br />        map.setCenter(new GLatLng(37.778855861649966, -79.98664855957031), 13); <br /> <br />      } <br />       <br />       <br />&lt;?php foreach ($listingRecords as $record): ?&gt; <br /> <br />      var point = new GLatLng(&lt;?php echo $listingRecord['latitude'] ?&gt;,&lt;?php echo $listingRecord['longitude'] ?&gt;); <br />      var marker = createMarker(point,'&lt;?php echo htmlspecialchars($record['address'], ENT_QUOTES) ?&gt;, &lt;?php echo htmlspecialchars($record['city'], ENT_QUOTES) ?&gt;') <br />      map.addOverlay(marker); <br />       <br />&lt;?php endforeach; ?&gt; <br /> <br />} <br />     <br /> <br />    //]]&gt; <br />    &lt;/script&gt; <br />  &lt;/head&gt; <br />  &lt;body onload=&quot;load()&quot; onunload=&quot;GUnload()&quot;&gt; <br />    &lt;div id=&quot;map&quot; style=&quot;width: 500px; height: 300px&quot;&gt;&lt;/div&gt; <br />     <br /> <br />     <br />  &lt;/body&gt; <br />&lt;/html&gt;<br /><br />In the view source on the web, it's not pulling the GLatLng info that it needs. But I can't figure out how to get it to work.<br />]]></description>
          <pubDate>Sun, 01 Mar 2009 23:34:55 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196062#post2196062</guid>
        </item>
                <item>
          <title>Re: [blind2uriz] Help with Google Maps</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196041#post2196041</link>
          <description><![CDATA[When I made a map section in CMS builder and then input the lat and long and then inserted in dreamweaver, it worked, i got the map but didn't get any markers or anything, so now i'm trying to go back to the map.php code i was using and trying to figure out what is going on. could it be something in the php at the top of my page?<br />]]></description>
          <pubDate>Fri, 27 Feb 2009 16:42:54 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196041#post2196041</guid>
        </item>
                <item>
          <title>Re: [ross] Help with Google Maps</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196040#post2196040</link>
          <description><![CDATA[ok i came home and I had that line in the var point= correct. Anyway, I decided just to be easier, I scratched that and made a whole new map section w/ text fields for lat and long. I output the php and set up the map.php. Put everything in the correct manner again and it still won't work. I get this error:<br /><br />Notice: Undefined variable: listingRecords in /home/content/g/r/e/greenways1/html/map.php on line 43<br /><br />Warning: Invalid argument supplied for foreach() in /home/content/g/r/e/greenways1/html/map.php on line 43<br /><br />Here's my source from the map.php page:<br /><br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; <br />  &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt; <br />&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt; <br />  &lt;head&gt; <br />    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=utf-8&quot;/&gt; <br />    &lt;title&gt;Google Maps Example&lt;/title&gt; <br />    &lt;script src=&quot;http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=ABQIAAAAzWpdtAJy15_mFvJb9uOTTxSpUoc7Yr5GTKWfF5EG52h_OrBQ8BQO9BWmFxt8DPC9oYhAuCCswFK5YQ&quot; <br />      type=&quot;text/javascript&quot;&gt;&lt;/script&gt; <br />    &lt;script type=&quot;text/javascript&quot;&gt; <br /> <br />    //&lt;![CDATA[ <br /> <br />    function load() { <br />      if (GBrowserIsCompatible()) { <br /> <br />      function createMarker(point,html) { <br />        var marker = new GMarker(point); <br />        GEvent.addListener(marker, &quot;click&quot;, function() { <br />          marker.openInfoWindowHtml(html); <br />        }); <br />        return marker; <br />      } <br />       <br />       <br />        var map = new GMap2(document.getElementById(&quot;map&quot;)); <br />        map.setCenter(new GLatLng(37.778855861649966, -79.98664855957031), 13); <br /> <br />      } <br />       <br />       <br /><br />Notice: Undefined variable: listingRecords in /home/content/g/r/e/greenways1/html/map.php on line 43<br /><br />Warning: Invalid argument supplied for foreach() in /home/content/g/r/e/greenways1/html/map.php on line 43<br /> <br /> <br />} <br />     <br /> <br />    //]]&gt; <br />    &lt;/script&gt; <br />  &lt;/head&gt; <br />  &lt;body onload=&quot;load()&quot; onunload=&quot;GUnload()&quot;&gt; <br />    &lt;div id=&quot;map&quot; style=&quot;width: 200px; height: 200px&quot;&gt;&lt;/div&gt; <br />     <br /> <br />     <br />  &lt;/body&gt; <br />&lt;/html&gt;<br /><br />Here's my code in dreamweaver:<br /><br />&lt;?php<br />  <br />  require_once &quot;/home/content/g/r/e/greenways1/html/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($mapRecords, $mapMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'map',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '1',<br />  ));<br />  $mapRecord = @$mapRecords[0]; // get first record<br /><br />?&gt;<br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; <br />  &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt; <br />&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt; <br />  &lt;head&gt; <br />    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=utf-8&quot;/&gt; <br />    &lt;title&gt;Google Maps Example&lt;/title&gt; <br />    &lt;script src=&quot;http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=ABQIAAAAzWpdtAJy15_mFvJb9uOTTxSpUoc7Yr5GTKWfF5EG52h_OrBQ8BQO9BWmFxt8DPC9oYhAuCCswFK5YQ&quot; <br />      type=&quot;text/javascript&quot;&gt;&lt;/script&gt; <br />    &lt;script type=&quot;text/javascript&quot;&gt; <br /> <br />    //&lt;![CDATA[ <br /> <br />    function load() { <br />      if (GBrowserIsCompatible()) { <br /> <br />      function createMarker(point,html) { <br />        var marker = new GMarker(point); <br />        GEvent.addListener(marker, &quot;click&quot;, function() { <br />          marker.openInfoWindowHtml(html); <br />        }); <br />        return marker; <br />      } <br />       <br />       <br />        var map = new GMap2(document.getElementById(&quot;map&quot;)); <br />        map.setCenter(new GLatLng(37.778855861649966, -79.98664855957031), 13); <br /> <br />      } <br />       <br />       <br />&lt;?php foreach ($listingRecords as $record): ?&gt; <br /> <br />      var point = new GLatLng(&lt;?php echo $mapRecord['latitude'] ?&gt;,&lt;?php echo $mapRecord['longitude'] ?&gt;); <br />      var marker = createMarker(point,'&lt;?php echo htmlspecialchars($record['address'], ENT_QUOTES) ?&gt;, &lt;?php echo htmlspecialchars($record['city'], ENT_QUOTES) ?&gt;') <br />      map.addOverlay(marker); <br />       <br />&lt;?php endforeach; ?&gt; <br /> <br />} <br />     <br /> <br />    //]]&gt; <br />    &lt;/script&gt; <br />  &lt;/head&gt; <br />  &lt;body onload=&quot;load()&quot; onunload=&quot;GUnload()&quot;&gt; <br />    &lt;div id=&quot;map&quot; style=&quot;width: 200px; height: 200px&quot;&gt;&lt;/div&gt; <br />     <br /> <br />     <br />  &lt;/body&gt; <br />&lt;/html&gt;<br /><br />Thanks for all your help<b><b></b><u><br />]]></description>
          <pubDate>Fri, 27 Feb 2009 16:31:54 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196040#post2196040</guid>
        </item>
                <item>
          <title>Re: [ross] Help with Google Maps</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196039#post2196039</link>
          <description><![CDATA[Thanks for the info. Yeah I noticed the LatLng wasn't showing up when viewing the source. I'm not at home right now but will be in a few hours, I'll check it and get back with you. Thanks again.<br /><br />John<br />]]></description>
          <pubDate>Fri, 27 Feb 2009 13:55:51 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196039#post2196039</guid>
        </item>
                <item>
          <title>Re: [ross] Help with Google Maps</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196035#post2196035</link>
          <description><![CDATA[The page is just blank. No javascript error. Here is the link to the page:<br /><br />http://www.idsitepreview.com/map.php<br /><br />Here is the page I want it on:<br /><br />http://www.idsitepreview.com/listingDetail.php<br /><br />I made an iframe in the bottom right of the page where I want the map to show up.<br />Let me know if you need anything else. Thanks for the reply.<br /><br />John<br />]]></description>
          <pubDate>Fri, 27 Feb 2009 13:18:51 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196035#post2196035</guid>
        </item>
                <item>
          <title>Re: [Jake] Help with Google Maps</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196023#post2196023</link>
          <description><![CDATA[I'm trying to get this to work as well. I followed the instructions, setting up a latitude and longitude field in my real estate listings detail page, listingDetail.php, then output the code and copied the appropriate php in the appropriate place, but I can't get the page to work correctly, here's my entire page code:<br /><br />&lt;?php<br />  <br />  require_once &quot;/home/content/g/r/e/greenways1/html/cmsAdmin/lib/viewer_functions.php&quot;;<br /><br />  list($listingRecords, $listingMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'listing',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '1',<br />  ));<br />  $listingRecord = @$listingRecords[0]; // get first record<br /><br />?&gt;<br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; <br />  &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt; <br />&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt; <br />  &lt;head&gt; <br />    &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=utf-8&quot;/&gt; <br />    &lt;title&gt;Google Maps Example&lt;/title&gt; <br />    &lt;script src=&quot;http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=ABQIAAAAzWpdtAJy15_mFvJb9uOTTxSpUoc7Yr5GTKWfF5EG52h_OrBQ8BQO9BWmFxt8DPC9oYhAuCCswFK5YQ&quot; <br />      type=&quot;text/javascript&quot;&gt;&lt;/script&gt; <br />    &lt;script type=&quot;text/javascript&quot;&gt; <br /> <br />    //&lt;![CDATA[ <br /> <br />    function load() { <br />      if (GBrowserIsCompatible()) { <br /> <br />      function createMarker(point,html) { <br />        var marker = new GMarker(point); <br />        GEvent.addListener(marker, &quot;click&quot;, function() { <br />          marker.openInfoWindowHtml(html); <br />        }); <br />        return marker; <br />      } <br />       <br />       <br />        var map = new GMap2(document.getElementById(&quot;map&quot;)); <br />        map.setCenter(new GLatLng(37.778855861649966, -79.98664855957031), 13); <br /> <br />      } <br />       <br />       <br />&lt;?php foreach ($listingRecords as $record): ?&gt; <br /> <br />      var point = new GLatLng(&lt;?php echo $listingRecord['latitude'] ?&gt;,&lt;?php echo $listingRecord['longitude'] ?&gt;); <br />      var marker = createMarker(point,'&lt;?php echo htmlspecialchars($record['address'], ENT_QUOTES) ?&gt;, &lt;?php echo htmlspecialchars($record['city'], ENT_QUOTES) ?&gt;') <br />      map.addOverlay(marker); <br />       <br />&lt;?php endforeach; ?&gt; <br /> <br />} <br />     <br /> <br />    //]]&gt; <br />    &lt;/script&gt; <br />  &lt;/head&gt; <br />  &lt;body onload=&quot;load()&quot; onunload=&quot;GUnload()&quot;&gt; <br />    &lt;div id=&quot;map&quot; style=&quot;width: 200px; height: 200px&quot;&gt;&lt;/div&gt; <br />     <br /> <br />     <br />  &lt;/body&gt; <br /><br />your code is &lt;?php echo $record['latitude'] ?&gt;, I changed that to &lt;?php echo $listingRecord['latitude'] ?&gt;? Is that right? I've tried changing different things in the code but nothing seems to work. Thanks for any help.<br /><br />John<br />]]></description>
          <pubDate>Fri, 27 Feb 2009 00:17:20 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196023#post2196023</guid>
        </item>
              </channel>
    </rss>
  