<?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%3Ajsammann</link>
        <description></description>
        <pubDate>Thu, 21 May 2026 18:34:54 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Ajsammann&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Prevent submitting empty form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234731#post2234731</link>
          <description><![CDATA[<p>I have searched the forums but am not able to find what I believe to be a simple task. I have created a basic search form that looks for 3 fields; last name, item number and zip code. It works great until you just hit submit without entering anything into the fields, it then returns everything in the database. Is there a way to prevent this? I'm sure there is I just don't seem to know what to search for. Thanks in advance.</p>]]></description>
          <pubDate>Wed, 13 Aug 2014 18:44:43 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234731#post2234731</guid>
        </item>
                <item>
          <title>Simple Search (maybe?)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234170#post2234170</link>
          <description><![CDATA[<p>&lt;form method="POST" action="/includes/cloud.php"&gt;<br /> &lt;input type="text" name="keywords_keyword" value=""&gt;<br /> &lt;input type="submit" name="submit" value="Search"&gt;<br />&lt;/form&gt;</p>

<p>I think I'm attempting a simple search above is my search.php page</p>
<p>Below is my cloud.php page</p>
<p>All I want to do is search a field in my table called key words, the field contains multiple strings separated by commas (math 101,English Comp,Biology Lab) I would like the search to return the names of people in the respective class. What am I doing wrong?</p>

<p>Thanks,</p>
<p>James</p>

<p>&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br />&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 = 'cmsAdmin/lib/viewer_functions.php';<br /> $dirsToCheck = array('/home/localmls/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 'sullivan_county'<br /> list($sullivan_countyRecords, $sullivan_countyMetaData) = getRecords(array(<br /> 'tableName' =&gt; 'sullivan_county',<br /> 'orderBy' =&gt; 'RAND()',<br /> 'loadUploads' =&gt; false,<br /> 'allowSearch' =&gt; true,<br /> ));</p>
<p>?&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;&lt;/title&gt;<br /> &lt;meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /&gt;<br /> &lt;style type="text/css"&gt;</p>
<p>/* mouse over link */<br />a:hover {<br /> text-decoration: underline;<br />}<br />div {<br /> text-align:justify;<br />}</p>
<p>&lt;/style&gt;<br /><br /> &lt;/head&gt;<br />&lt;body&gt;</p>
<p>&lt;!-- STEP2: Display Records (Paste this where you want your records to be listed) --&gt;<br /> &lt;div&gt;<br /> &lt;?php foreach ($sullivan_countyRecords as $record): ?&gt;<br /><br /> &lt;a href="&lt;?php echo htmlencode($record['cloud_url']) ?&gt;"style="color:&lt;?php echo $record['color'] ?&gt;;font-size:&lt;?php echo $record['size'] ?&gt;;background-color:&lt;?php echo $record['bg_color'] ?&gt;;" target="_blank"&gt;&lt;?php echo htmlencode($record['cloud_title']) ?&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;<br /><br /> &lt;?php endforeach ?&gt;<br />&lt;/div&gt;<br /> &lt;?php if (!$sullivan_countyRecords): ?&gt;<br /> No records were found!&lt;br/&gt;&lt;br/&gt;<br /> &lt;?php endif ?&gt;<br /><br /> &lt;!-- /STEP2: Display Records --&gt;</p>
<p>&lt;/body&gt;<br />&lt;/html&gt;</p>]]></description>
          <pubDate>Tue, 10 Jun 2014 12:57:00 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234170#post2234170</guid>
        </item>
                <item>
          <title>Field Checkbox (Multi-Value) Question.</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232429#post2232429</link>
          <description><![CDATA[<p>That worked perfectly! Thank you.</p>]]></description>
          <pubDate>Mon, 18 Nov 2013 15:56:56 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232429#post2232429</guid>
        </item>
                <item>
          <title>Field Checkbox (Multi-Value) Question.</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232415#post2232415</link>
          <description><![CDATA[<p>Hi, I have a question reguarding writing a select for the checkbox (mulit Value) </p>

<p>I wanted to limit the select to records in another table to those that they created.  Here is my query so far:     SELECT website FROM cms_websites WHERE createdByUserNum = <span style="color:#ff0000;">(Need to know what to put here) </span></p>

]]></description>
          <pubDate>Mon, 18 Nov 2013 06:28:04 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232415#post2232415</guid>
        </item>
              </channel>
    </rss>
  