<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title>View Search Logs</title>
        <link>https://interactivetools.com/forum/forum-posts.php?View-Search-Logs-70325</link>
        <description></description>
        <pubDate>Wed, 13 May 2026 21:23:48 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-posts.php?rss=1&amp;View-Search-Logs-70325" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [Dave] View Search Logs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198985#post2198985</link>
          <description><![CDATA[<font size="2">Hi Dave, <br /><br />Thanks ! That is for me the best approach.<br /><br />That is very flexible and adapts very easily to the various needs.<br /><br />Thank you very much !<br /><br />Djulia</font><br />]]></description>
          <pubDate>Sat, 29 Aug 2009 05:08:45 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198985#post2198985</guid>
        </item>
                <item>
          <title>Re: [Djulia] View Search Logs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198977#post2198977</link>
          <description><![CDATA[Hi Djulia,<br /><br />I think the simplest solution for this case might be to custom code something for your specific page rather than have a generic plugin.<br /><br />What about something like this:<br /><br /><code>$keywordFieldnames = array();<br />$keywordFieldnames[] = 'zip_code,sector,title,content';<br />$keywordFieldnames[] = 'city_keyword,zip_code,sector_keyword';<br />$keywordFieldnames[] = 'prix_min';<br /><br />foreach ($keywordFieldnames as $fieldname) {<br />  $keyword = @$_REQUEST[$fieldname];<br />  if (!$keyword) { continue; }<br />  <br />  // add code here to insert $keyword into database<br />  // ...<br />}</code><br /><br />Hope that helps!<br />]]></description>
          <pubDate>Fri, 28 Aug 2009 12:58:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198977#post2198977</guid>
        </item>
                <item>
          <title>Re: [Dave] View Search Logs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198970#post2198970</link>
          <description><![CDATA[Hi Dave, <br /><br />I have a search form for each section (sale house, sale appartment, rentals appartment...). <br />But, the form is identical for each section : <br />----------------------------------------------------------- <br />&lt;form name=&quot;&quot; method=&quot;&quot; action=&quot;&quot;&gt; <br />&lt;label&gt;Keyword : &lt;/label&gt; <br />&lt;input type=&quot;text&quot; name=&quot;zip_code,sector,title,content&quot; /&gt; <br /><br />&lt;label&gt;City : &lt;/label&gt; <br />&lt;input type=&quot;text&quot; name=&quot;city_keyword,zip_code,sector_keyword&quot; /&gt; <br /><br />&lt;label&gt;Price :&lt;/label&gt; <br />&lt;select name=&quot;prix_min&quot;&gt; <br />&lt;option value=&quot;0&quot;&gt;30.000&lt;/option&gt; <br />&lt;option value=&quot;100000&quot;&gt;100.000&lt;/option&gt; <br />&lt;option value=&quot;200000&quot;&gt;200.000&lt;/option&gt; <br />... <br />&lt;/select&gt; <br />&lt;/form&gt; <br />----------------------------------------------------------- <br /><br />I would like to obtain the key word used for the fields Keyword and/or City. <br />It would be well, in the ideal, to obtain the price, but it is less important and that must complicate the plugin ? <br /><br />The idea to obtain the matches returned is also very interesting. <br /><br /><font size="2">It would be a good tool of statistics !</font> <br /><br />Thanks for the feedback, Djulia<br />]]></description>
          <pubDate>Fri, 28 Aug 2009 05:41:26 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198970#post2198970</guid>
        </item>
                <item>
          <title>Re: [Djulia] View Search Logs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198959#post2198959</link>
          <description><![CDATA[Hi Djulia,<br /><br />I've been thinking about this more and I think it might be better to add on the page that does the searching.<br /><br />How many search pages do you have (just one?)<br /><br />And what information do you want recorded to the database? (fields searched, keyword used, matches returned?)<br />]]></description>
          <pubDate>Thu, 27 Aug 2009 12:06:03 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198959#post2198959</guid>
        </item>
                <item>
          <title>Re: [Dave] View Search Logs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198948#post2198948</link>
          <description><![CDATA[Hi Dave,<font size="2"> <br /><br />&gt;&gt; We could add a plugin hook to _createDefaultWhereWithFormInput() in the viewer_functions.php file that passed back an array of fieldnames being search and keywords.<font size="2"> <br /><br />Yes, that would be well ! <br /><br />The idea is to obtain a tool of decision and to direct the contents so necessary (...) <br /><br />You think of being able to create the plugin ? <br /><br />Thanks, Djulia</font></font><br />]]></description>
          <pubDate>Wed, 26 Aug 2009 11:44:31 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198948#post2198948</guid>
        </item>
                <item>
          <title>Re: [Djulia] View Search Logs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198945#post2198945</link>
          <description><![CDATA[Hi Djulia,<br /><br />Yes it's possible.  We may need to add a plugin hook for it but we can do that.<br /><br />The first step would be to identify which urls to log.  We could add a plugin hook to _createDefaultWhereWithFormInput() in the viewer_functions.php file that passed back an array of fieldnames being search and keywords.  Would that work?<br /><br />You might not want to log everything, though, for example num = 1.<br /><br />Hope that helps!<br />]]></description>
          <pubDate>Wed, 26 Aug 2009 11:26:33 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198945#post2198945</guid>
        </item>
                <item>
          <title>View Search Logs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2198944#post2198944</link>
          <description><![CDATA[Hi,  <br /><br />It would be interesting to record in a table the keywords used by the visitors with the Custom Search Forms. <br /><br />A plugin is possible ? <br /><br />I tried to use the code suggested by Dave in the file addForm.php, but that does not seem to be possible with the function search. <br /><br />Thanks, Djulia<br />]]></description>
          <pubDate>Wed, 26 Aug 2009 11:00:52 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2198944#post2198944</guid>
        </item>
              </channel>
    </rss>
  