<?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%3AMRI</link>
        <description></description>
        <pubDate>Mon, 13 Apr 2026 12:01:55 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3AMRI&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [chris] Posting form results into database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204999#post2204999</link>
          <description><![CDATA[thanks sooo much man!!!<br />]]></description>
          <pubDate>Mon, 21 Jun 2010 14:59:10 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204999#post2204999</guid>
        </item>
                <item>
          <title>Re: [chris] Posting form results into database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204996#post2204996</link>
          <description><![CDATA[perfect!<br /><br />now if only I can figure out how to have it redirect to another page after submitting as opposed to just displaying &quot;Thank You&quot;<br /><br /><br />&lt;?php <br />require_once &quot;XXXX/admin/lib/init.php&quot;; <br /><br />// submit form <br />if (@$_REQUEST['submit']) { <br /><br />// error checking <br />$errorsAndAlerts = &quot;&quot;; <br />if (!@$_REQUEST['first_name']) { $errorsAndAlerts .= &quot;Please specify First Name!&lt;br/&gt;\n&quot;; } <br />if (!@$_REQUEST['last_name']) { $errorsAndAlerts .= &quot;Please specify Last Name!&lt;br/&gt;\n&quot;; } <br />if (!@$_REQUEST['email_address']) { $errorsAndAlerts .= &quot;Please specify Email Address!&lt;br/&gt;\n&quot;; } <br /><br />// turn off strict mysql error checking for: STRICT_ALL_TABLES <br />mysqlStrictMode(false); // disable Mysql strict errors for when a field isn't defined below (can be caused when fields are added later) <br /><br />// add record <br />if (!@$errorsAndAlerts) { <br />mysql_query(&quot;INSERT INTO `{$TABLE_PREFIX}view_sign_up_list` SET <br />first_name = '&quot;.mysql_real_escape_string( $_REQUEST['first_name'] ).&quot;', <br />last_name = '&quot;.mysql_real_escape_string( $_REQUEST['last_name'] ).&quot;', <br />club_number = '&quot;.mysql_real_escape_string( $_REQUEST['club_number'] ).&quot;', <br />email_address = '&quot;.mysql_real_escape_string( $_REQUEST['email_address'] ).&quot;', <br />yes_emails = '&quot;.mysql_real_escape_string( $_REQUEST['yes_emails'] ).&quot;', <br />mobile_phone_number = '&quot;.mysql_real_escape_string( $_REQUEST['mobile_phone_number'] ).&quot;', <br />cell_phone_carrier = '&quot;.mysql_real_escape_string( $_REQUEST['cell_phone_carrier'] ).&quot;', <br />yes_text = '&quot;.mysql_real_escape_string( $_REQUEST['yes_text'] ).&quot;', <br /><br />createdDate = NOW(), <br />updatedDate = NOW(), <br />createdByUserNum = '0', <br />updatedByUserNum = '0'&quot;) <br />or die(&quot;MySQL Error Creating Record:&lt;br/&gt;\n&quot;. htmlspecialchars(mysql_error()) . &quot;\n&quot;); <br />$recordNum = mysql_insert_id(); <br /><br />// display thanks message and clear form <br />$errorsAndAlerts = &quot;Thank you&quot;; <br />$_REQUEST = array(); <br />} <br /><br />} <br /><br />?&gt;<br />]]></description>
          <pubDate>Mon, 21 Jun 2010 14:39:38 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204996#post2204996</guid>
        </item>
                <item>
          <title>Re: [MRI] Posting form results into database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204994#post2204994</link>
          <description><![CDATA[ok it worked...kind of..<br /><br />Everything enters into CMSBuilder fine now.. but if I uncheck a box... and submit.. I get this error<br /><br />Notice: Undefined index: yes_emails in XXXXX/club/signup.php on line 24 Notice: Undefined index: yes_text in XXXXX/club/signup.php on line 27<br /><br /><br />--------<br /><br />heres where those errors are:<br />if (!@$errorsAndAlerts) {<br />     mysql_query(&quot;INSERT INTO `{$TABLE_PREFIX}view_sign_up_list` SET<br />                      first_name      = '&quot;.mysql_real_escape_string( $_REQUEST['first_name'] ).&quot;',<br />                      last_name          = '&quot;.mysql_real_escape_string( $_REQUEST['last_name'] ).&quot;',<br />					   crown_club_number      = '&quot;.mysql_real_escape_string( $_REQUEST['club_number'] ).&quot;',<br />                      email_address          = '&quot;.mysql_real_escape_string( $_REQUEST['email_address'] ).&quot;',<br />					  yes_emails      = '&quot;.mysql_real_escape_string( $_REQUEST['yes_emails'] ).&quot;',<br />                      mobile_phone_number          = '&quot;.mysql_real_escape_string( $_REQUEST['mobile_phone_number'] ).&quot;',<br />					  cell_phone_carrier          = '&quot;.mysql_real_escape_string( $_REQUEST['cell_phone_carrier'] ).&quot;',<br />					  yes_text      = '&quot;.mysql_real_escape_string( $_REQUEST['yes_text'] ).&quot;',<br /><br />                      createdDate      = NOW(),<br />                      updatedDate      = NOW(),<br />                      createdByUserNum = '0',<br />                      updatedByUserNum = '0'&quot;)<br />    or die(&quot;MySQL Error Creating Record:&lt;br/&gt;\n&quot;. htmlspecialchars(mysql_error()) . &quot;\n&quot;);<br />    $recordNum = mysql_insert_id();<br />]]></description>
          <pubDate>Mon, 21 Jun 2010 12:57:16 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204994#post2204994</guid>
        </item>
                <item>
          <title>Re: [Jason] Posting form results into database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204991#post2204991</link>
          <description><![CDATA[ill give that a shot...thanks<br />]]></description>
          <pubDate>Mon, 21 Jun 2010 12:47:54 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204991#post2204991</guid>
        </item>
                <item>
          <title>Re: [MRI] Posting form results into database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204975#post2204975</link>
          <description><![CDATA[any pointers for this?<br />]]></description>
          <pubDate>Mon, 21 Jun 2010 09:30:38 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204975#post2204975</guid>
        </item>
                <item>
          <title>Re: [chris] Posting form results into database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204947#post2204947</link>
          <description><![CDATA[&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br />&lt;?php<br />  require_once &quot;XXXX/admin/lib/init.php&quot;;<br /><br />// submit form<br />if (@$_REQUEST['submit']) {<br /><br />  // error checking<br />  $errorsAndAlerts = &quot;&quot;;<br />  if (!@$_REQUEST['first_name'])    { $errorsAndAlerts .= &quot;Please specify First Name!&lt;br/&gt;\n&quot;; }<br />  if (!@$_REQUEST['last_name'])  { $errorsAndAlerts .= &quot;Please specify Last Name!&lt;br/&gt;\n&quot;; }<br />  if (!@$_REQUEST['email_address'])  { $errorsAndAlerts .= &quot;Please specify Email Address!&lt;br/&gt;\n&quot;; }<br /><br />  // turn off strict mysql error checking for: STRICT_ALL_TABLES<br />  mysqlStrictMode(false); // disable Mysql strict errors for when a field isn't defined below (can be caused when fields are added later)<br /><br />  // add record<br />  if (!@$errorsAndAlerts) {<br />     mysql_query(&quot;INSERT INTO `{$TABLE_PREFIX}view_sign_up_list` SET<br />                      first_name      = '&quot;.mysql_real_escape_string( $_REQUEST['first_name'] ).&quot;',<br />                      last_name          = '&quot;.mysql_real_escape_string( $_REQUEST['last_name'] ).&quot;',<br />					   club_number      = '&quot;.mysql_real_escape_string( $_REQUEST['club_number'] ).&quot;',<br />                      email_address          = '&quot;.mysql_real_escape_string( $_REQUEST['email_address'] ).&quot;',<br />					  yes_emails      = '&quot;.mysql_real_escape_string( $_REQUEST['yes_emails'] ).&quot;',<br />                      mobile_phone_number          = '&quot;.mysql_real_escape_string( $_REQUEST['mobile_phone_number'] ).&quot;',<br />					  cell_phone_carrier          = '&quot;.mysql_real_escape_string( $_REQUEST['cell_phone_carrier'] ).&quot;',<br />					  yes_text      = '&quot;.mysql_real_escape_string( $_REQUEST['yes_text'] ).&quot;',<br /><br />                      createdDate      = NOW(),<br />                      updatedDate      = NOW(),<br />                      createdByUserNum = '0',<br />                      updatedByUserNum = '0'&quot;)<br />    or die(&quot;MySQL Error Creating Record:&lt;br/&gt;\n&quot;. htmlspecialchars(mysql_error()) . &quot;\n&quot;);<br />    $recordNum = mysql_insert_id();<br /><br />    // display thanks message and clear form<br />    $errorsAndAlerts = &quot;Thank you&quot;;<br />    $_REQUEST = array();<br />  }<br /><br />}<br /><br />?&gt;<br />&lt;?php<br />  <br />  require_once &quot;/XXXX/admin/lib/viewer_functions.php&quot;;<br /><br />  list($email_text_form_pageRecords, $email_text_form_pageMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'email_text_form_page',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '1',<br />  ));<br />  $email_text_form_pageRecord = @$email_text_form_pageRecords[0]; // get first record<br /><br /> <br /><br />?&gt;<br /><br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;<br />&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;<br />XXXXXXXXX<br />&lt;/head&gt;<br /><br />&lt;body onload=&quot;MM_preloadImages('../images/club/menu_dwn_r3_c1.jpg','../images/club/menu_dwn_r5_c1.jpg','../images/club/menu_dwn_r7_c1.jpg','../images/formpages/submit_ov.gif')&quot;&gt;<br />        &lt;div id=&quot;formbox&quot;&gt;<br /><br />        &lt;form method=&quot;post&quot; action=&quot;&quot;&gt;<br />&lt;input type=&quot;hidden&quot; name=&quot;submit&quot; value=&quot;1&quot; /&gt;<br />&lt;?php if (@$errorsAndAlerts): ?&gt;<br />  &lt;div style=&quot;color:FFFFFF; font-weight: bold; font-size: 17px; font-family:Arial, Helvetica, sans-serif&quot;&gt;&lt;br/&gt;<br />    &lt;?php echo $errorsAndAlerts; ?&gt;&lt;br/&gt;&lt;br/&gt;<br />  &lt;/div&gt;<br />&lt;?php endif ?&gt;<br />        &lt;table width=&quot;645&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot;&gt;<br />  &lt;tr&gt;<br />    &lt;td align=&quot;left&quot; valign=&quot;top&quot; style=&quot;padding:0px 15px 20px 0px&quot;&gt;<br />    *&lt;b&gt;First Name:&lt;/b&gt;&lt;br /&gt;<br />      &lt;label&gt;<br />        &lt;input name=&quot;first_name&quot; type=&quot;text&quot; id=&quot;textbox&quot; size=&quot;40&quot; value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['first_name']) ?&gt;&quot;/&gt;<br />      &lt;/label&gt;<br />    &lt;/td&gt;<br />    &lt;td align=&quot;left&quot; valign=&quot;top&quot; style=&quot;padding:0px 15px 20px 0px&quot;&gt;<br />    *&lt;b&gt;Last Name:&lt;/b&gt;&lt;br /&gt;<br />    &lt;label&gt;<br />        &lt;input name=&quot;last_name&quot; type=&quot;text&quot; id=&quot;textbox&quot; size=&quot;40&quot; value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['last_name']) ?&gt;&quot; /&gt;<br />      &lt;/label&gt;&lt;/td&gt;<br />  &lt;/tr&gt;<br />  &lt;tr&gt;<br />    &lt;td align=&quot;left&quot; valign=&quot;top&quot; style=&quot;padding:0px 15px 20px 0px&quot; colspan=&quot;2&quot;&gt;<br />   <br />   &lt;/td&gt;<br />    <br />  &lt;/tr&gt;<br />  &lt;tr&gt;<br />    &lt;td align=&quot;left&quot; valign=&quot;top&quot; style=&quot;padding:0px 15px 20px 0px&quot; colspan=&quot;2&quot;&gt;<br />    &lt;b&gt;Card Number:&lt;/b&gt;&lt;br /&gt;<br />    &lt;label&gt;<br />        &lt;input name=&quot;club_number&quot; type=&quot;text&quot; id=&quot;textbox&quot; size=&quot;40&quot; value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['club_number']) ?&gt;&quot; /&gt;<br />      &lt;/label&gt;&lt;/td&gt;<br />    <br />  &lt;/tr&gt;<br />   &lt;tr&gt;<br />    &lt;td align=&quot;left&quot; valign=&quot;top&quot; style=&quot;padding:15px 0px 20px 0px&quot; colspan=&quot;2&quot;&gt;<br />    &lt;div class=&quot;purpleheader&quot;&gt; EMAIL SIGN-UP:&lt;/div&gt;&lt;/td&gt;<br />    <br />  &lt;/tr&gt;<br />  &lt;tr&gt;<br />    &lt;td align=&quot;left&quot; valign=&quot;top&quot; style=&quot;padding:0px 15px 20px 0px&quot; colspan=&quot;2&quot;&gt;<br />    *&lt;b&gt;Email Address:&lt;/b&gt;&lt;br /&gt;<br />    &lt;label&gt;<br />        &lt;input name=&quot;email_address&quot; type=&quot;text&quot; id=&quot;textbox&quot; size=&quot;40&quot; value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['email_address']) ?&gt;&quot; /&gt;<br />      &lt;/label&gt;&lt;/td&gt;<br />    <br />  &lt;/tr&gt;<br />  &lt;tr&gt;<br />     &lt;td align=&quot;left&quot; valign=&quot;top&quot; colspan=&quot;2&quot; style=&quot;padding:0px 15px 30px 0px&quot;&gt;&lt;label&gt;<br />       &lt;input name=&quot;yes_emails&quot; type=&quot;checkbox&quot; id=&quot;Yes&quot; checked=&quot;checked&quot; value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['yes_emails']) ?&gt;&quot; /&gt;<br />     &lt;/label&gt;<br />       YES! I would like to receive emails!&lt;/tr&gt;<br />       &lt;tr&gt;<br />    &lt;td align=&quot;left&quot; valign=&quot;top&quot; style=&quot;padding:15px 0px 20px 0px&quot; colspan=&quot;2&quot;&gt;<br />    &lt;div class=&quot;purpleheader&quot;&gt;TEXT MESSAGING SIGN-UP:&lt;/div&gt;&lt;/td&gt;<br />    <br />  &lt;/tr&gt;<br />  &lt;tr&gt;<br />    &lt;td align=&quot;left&quot; valign=&quot;top&quot; style=&quot;padding:0px 15px 20px 0px&quot; colspan=&quot;2&quot;&gt;<br />    *&lt;b&gt;Mobile Phone Number (XXX-XXX-XXXX):&lt;/b&gt;&lt;br /&gt;<br />    &lt;label&gt;<br />        &lt;input name=&quot;mobile_phone_number&quot; type=&quot;text&quot; id=&quot;textbox&quot; size=&quot;40&quot; value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['mobile_phone_number']) ?&gt;&quot; /&gt;<br />      &lt;/label&gt;&lt;/td&gt;<br />    <br />  &lt;/tr&gt;<br />  &lt;tr&gt;<br />    &lt;td align=&quot;left&quot; valign=&quot;top&quot; style=&quot;padding:0px 15px 20px 0px&quot; colspan=&quot;2&quot;&gt;<br />    &lt;b&gt;Cell Phone Carrier:&lt;/b&gt;&lt;br /&gt;<br />    &lt;select name=&quot;cell_phone_carrier&quot; id=&quot;dropdown&quot; &gt;<br />      &lt;option selected=&quot;selected&quot;&gt;Select One&lt;/option&gt;<br />      &lt;option value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['cell_phone_carrier']) ?&gt;&quot;&gt;Verizon&lt;/option&gt;<br />      &lt;option value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['cell_phone_carrier']) ?&gt;&quot;&gt;Nextel&lt;/option&gt;<br />      &lt;option value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['cell_phone_carrier']) ?&gt;&quot;&gt;Sprint&lt;/option&gt;<br />      &lt;option value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['cell_phone_carrier']) ?&gt;&quot;&gt;T-Mobile&lt;/option&gt;<br />      &lt;option value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['cell_phone_carrier']) ?&gt;&quot;&gt;Boost Mobile&lt;/option&gt;<br />      &lt;option value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['cell_phone_carrier']) ?&gt;&quot;&gt;Midwest&lt;/option&gt;<br />      &lt;option value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['cell_phone_carrier']) ?&gt;&quot;&gt;Suncom&lt;/option&gt;<br />      &lt;option value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['cell_phone_carrier']) ?&gt;&quot;&gt;Alltel&lt;/option&gt;<br />      &lt;option value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['cell_phone_carrier']) ?&gt;&quot;&gt;AT&amp;amp;T&lt;/option&gt;<br />      &lt;option value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['cell_phone_carrier']) ?&gt;&quot;&gt;Virgin Mobile&lt;/option&gt;<br />      &lt;option value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['cell_phone_carrier']) ?&gt;&quot;&gt;U.S. Cellular&lt;/option&gt;<br />      &lt;option value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['cell_phone_carrier']) ?&gt;&quot;&gt;Cincinnati Bell&lt;/option&gt;<br />    &lt;/select&gt;&lt;/td&gt;<br />    <br />  &lt;/tr&gt;<br />  &lt;tr&gt;<br />     &lt;td align=&quot;left&quot; valign=&quot;top&quot; colspan=&quot;2&quot; style=&quot;padding:0px 15px 25px 0px&quot;&gt;&lt;label&gt;<br />       &lt;input name=&quot;yes_text&quot; type=&quot;checkbox&quot; id=&quot;Yes&quot; checked=&quot;checked&quot; value=&quot;&lt;?php echo htmlspecialchars(@$_REQUEST['yes_text']) ?&gt;&quot; /&gt;<br />     &lt;/label&gt;<br />       YES! I would like to receive text messages!&lt;/tr&gt;<br />   &lt;tr&gt;<br />     &lt;td align=&quot;left&quot; valign=&quot;top&quot; colspan=&quot;2&quot; style=&quot;padding:0px 15px 30px 0px&quot;&gt;<br />     &lt;input type=&quot;image&quot; name=&quot;add&quot;  value=&quot;Submit&quot; src=&quot;../images/formpages/submit.gif&quot; /&gt;<br />     &lt;br /&gt;&lt;br /&gt;<br />   <br />     &lt;/tr&gt;<br />     <br />&lt;/table&gt;<br />&lt;/form&gt;<br />        &lt;/div&gt;<br /><br /><br />&lt;/body&gt;<br />&lt;/html&gt;<br />]]></description>
          <pubDate>Fri, 18 Jun 2010 15:49:33 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204947#post2204947</guid>
        </item>
                <item>
          <title>Posting form results into database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204937#post2204937</link>
          <description><![CDATA[For the most part I have this working.. only issue im having is with check boxes and drop down lists.  Ill enter all info in a form and hit submit, when I check it in the CMS everything shows except for the item that required me to check a box or select from drop down list.<br /><br />any help would be great!<br /><br />also the script you guys gave me a while back for this displays a message after submitting... is there a way for me to direct to a confirmation page instead?<br /><br />  // display thanks message and clear form<br />    $errorsAndAlerts = &quot;Thank you&quot;;<br />    $_REQUEST = array();<br />  }<br />]]></description>
          <pubDate>Fri, 18 Jun 2010 11:35:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204937#post2204937</guid>
        </item>
                <item>
          <title>Re: [Jason] Warning: session_start():  ERROR</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204727#post2204727</link>
          <description><![CDATA[that did it!<br />]]></description>
          <pubDate>Mon, 07 Jun 2010 10:38:08 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204727#post2204727</guid>
        </item>
                <item>
          <title>Warning: session_start():  ERROR</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204724#post2204724</link>
          <description><![CDATA[I recently updated the cms to the most recent version and ever since, ive been getting this error:<br /><br />Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /home/ovation2/public_html/ovations/index.php:3) in /home/ovation2/public_html/ovations/admin/lib/init.php on line 74 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/ovation2/public_html/ovations/index.php:3) in /home/ovation2/public_html/ovations/admin/lib/init.php on line 74<br /><br /><br /><br />http://www.ovationscasino.com/<br />]]></description>
          <pubDate>Mon, 07 Jun 2010 09:19:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204724#post2204724</guid>
        </item>
                <item>
          <title>Re: [Jason] where clause</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204688#post2204688</link>
          <description><![CDATA[perfect.. now is there a way to get it so It displays records that are tagged<br /><br />Getting Here before records tagged All?<br /><br />instead of displaying in random order?<br />]]></description>
          <pubDate>Fri, 04 Jun 2010 10:41:38 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204688#post2204688</guid>
        </item>
                <item>
          <title>where clause</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2204683#post2204683</link>
          <description><![CDATA[Im trying to get something like this.. but i assume that &quot;or&quot; is correct..<br /><br />'where' =&gt; &quot; page_display LIKE '%\ALL\t%' or '%\Getting Here\t%' &quot;,<br />]]></description>
          <pubDate>Fri, 04 Jun 2010 10:10:50 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2204683#post2204683</guid>
        </item>
                <item>
          <title>Re: [Dave] Lists (checkbox multi value) display multi values?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201695#post2201695</link>
          <description><![CDATA[loaded from another table...thanks<br />]]></description>
          <pubDate>Mon, 08 Feb 2010 08:56:26 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201695#post2201695</guid>
        </item>
                <item>
          <title>Lists (checkbox multi value) display multi values?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201624#post2201624</link>
          <description><![CDATA[I set u a section that has a multi value checkbox.. I set up the List options to pull data from database.<br /><br />So for example its pulls Item Name for value and label.<br /><br />the problem is, when I select a certain checkbox.. on the actual page it just lists the &quot;Item Name&quot;.. I want it to also list the Item Description as well as the name.<br /><br />How do I do this?<br /><br />Sample code.. this is what im using now:<br /><br />&lt;?php echo join('&lt;br /&gt;&lt;br /&gt; ', getListLabels('rfps', 'case_studies', $rfpsRecord['case_studies'])); ?&gt;<br /><br />It just displays the Case Study Title... I want it to display the Case Study Title and the Case Study Description<br /><br />Thanks in advanced<br />]]></description>
          <pubDate>Thu, 04 Feb 2010 11:45:20 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201624#post2201624</guid>
        </item>
                <item>
          <title>Re: [Dave] User Accounts Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201485#post2201485</link>
          <description><![CDATA[1.28<br />]]></description>
          <pubDate>Fri, 29 Jan 2010 17:09:37 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201485#post2201485</guid>
        </item>
                <item>
          <title>User Accounts Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201480#post2201480</link>
          <description><![CDATA[Hi,<br /><br />Im trying to set up an account where a user can access and create new users without having admin access...<br /><br />when that user logs in and trys to create a new user it brings up this error:<br /><br />MySQL Error: Column 'isAdmin' cannot be null<br />]]></description>
          <pubDate>Fri, 29 Jan 2010 11:29:10 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201480#post2201480</guid>
        </item>
                <item>
          <title>Re: [chris] No records in category</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201052#post2201052</link>
          <description><![CDATA[SEE BELOW: After each section &quot;location&quot; If there are no records with the corresponding location, then I would like it to display the &quot;No Records Available&quot; <br /><br /><br />&lt;?php $count = 0; ?&gt; <br />&lt;?php foreach ($hotel_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['location'], 'Arden Hills')): ?&gt; <br />    			<br />&lt;td align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_othercol&quot;&gt;        <br /><br />&lt;?php foreach ($record['logo'] as $upload): ?&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['width'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['height'] ?&gt;&quot; alt=&quot;&quot; /&gt;<br />&lt;?php endforeach ?&gt;<br /><br />&lt;h5&gt;&lt;?php echo $record['hotel_name'] ?&gt;&lt;/h5&gt;<br />&lt;?php echo $record['details'] ?&gt;&lt;/td&gt;<br /><br />&lt;?php $maxCols=2; if (@++$count % $maxCols == 0): ?&gt; <br />&lt;/tr&gt; <br />&lt;tr&gt;	<br />&lt;?php endif; ?&gt; <br />	<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br />		<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_linecell&quot;&gt;&lt;ul&gt;<br />&lt;li&gt;&lt;a href=&quot;#HotelMenu&quot;&gt;Return to menu&lt;/a&gt;&lt;/li&gt;<br />&lt;/ul&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_locationcell&quot;&gt;&lt;strong&gt;&lt;a name=&quot;Blaine&quot; id=&quot;Blaine&quot;&gt;&lt;/a&gt;Blaine&lt;/strong&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br /><br />&lt;?php $count = 0; ?&gt; <br />&lt;?php foreach ($hotel_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['location'], 'Blaine')): ?&gt; <br /><br />&lt;td align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_othercol&quot;&gt;        <br /><br />&lt;?php foreach ($record['logo'] as $upload): ?&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['width'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['height'] ?&gt;&quot; alt=&quot;&quot; /&gt;<br />&lt;?php endforeach ?&gt;<br /><br />&lt;h5&gt;&lt;?php echo $record['hotel_name'] ?&gt;&lt;/h5&gt;<br />&lt;?php echo $record['details'] ?&gt;&lt;/td&gt;<br /><br />&lt;?php $maxCols=2; if (@++$count % $maxCols == 0): ?&gt; <br />&lt;/tr&gt; <br />&lt;tr&gt;	<br />&lt;?php endif; ?&gt; <br /><br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br /><br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_linecell&quot;&gt;&lt;ul&gt;<br />&lt;li&gt;&lt;a href=&quot;#HotelMenu&quot;&gt;Return to menu&lt;/a&gt;&lt;/li&gt;<br />&lt;/ul&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_locationcell&quot;&gt;&lt;strong&gt;&lt;a name=&quot;CoonRapids&quot; id=&quot;CoonRapids&quot;&gt;&lt;/a&gt;Coon Rapids&lt;/strong&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br /><br />&lt;?php $count = 0; ?&gt; <br />&lt;?php foreach ($hotel_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['location'], 'Coon Rapids')): ?&gt; <br /><br />&lt;td align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_othercol&quot;&gt;        <br /><br />&lt;?php foreach ($record['logo'] as $upload): ?&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['width'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['height'] ?&gt;&quot; alt=&quot;&quot; /&gt;<br />&lt;?php endforeach ?&gt;<br /><br />&lt;h5&gt;&lt;?php echo $record['hotel_name'] ?&gt;&lt;/h5&gt;<br />&lt;?php echo $record['details'] ?&gt;&lt;/td&gt;<br /><br />&lt;?php $maxCols=2; if (@++$count % $maxCols == 0): ?&gt; <br />&lt;/tr&gt; <br />&lt;tr&gt;	<br />&lt;?php endif; ?&gt; <br /><br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br /><br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_linecell&quot;&gt;&lt;ul&gt;<br />&lt;li&gt;&lt;a href=&quot;#HotelMenu&quot;&gt;Return to menu&lt;/a&gt;&lt;/li&gt;<br />&lt;/ul&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_locationcell&quot;&gt;&lt;strong&gt;&lt;a name=&quot;ForestLake&quot; id=&quot;ForestLake&quot;&gt;&lt;/a&gt;Forest Lake&lt;/strong&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br /><br />&lt;?php $count = 0; ?&gt; <br />&lt;?php foreach ($hotel_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['location'], 'Forest Lake')): ?&gt; <br /><br />&lt;td align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_othercol&quot;&gt;        <br /><br />&lt;?php foreach ($record['logo'] as $upload): ?&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['width'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['height'] ?&gt;&quot; alt=&quot;&quot; /&gt;<br />&lt;?php endforeach ?&gt;<br /><br />&lt;h5&gt;&lt;?php echo $record['hotel_name'] ?&gt;&lt;/h5&gt;<br />&lt;?php echo $record['details'] ?&gt;&lt;/td&gt;<br /><br />&lt;?php $maxCols=2; if (@++$count % $maxCols == 0): ?&gt; <br />&lt;/tr&gt; <br />&lt;tr&gt;	<br />&lt;?php endif; ?&gt; <br /><br /><br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br /><br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_linecell&quot;&gt;&lt;ul&gt;<br />&lt;li&gt;&lt;a href=&quot;#HotelMenu&quot;&gt;Return to menu&lt;/a&gt;&lt;/li&gt;<br />&lt;/ul&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_locationcell&quot;&gt;&lt;strong&gt;&lt;a name=&quot;HamLake&quot; id=&quot;HamLake&quot;&gt;&lt;/a&gt;Ham Lake&lt;/strong&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br /><br />&lt;?php $count = 0; ?&gt; <br />&lt;?php foreach ($hotel_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['location'], 'Ham Lake')): ?&gt; <br /><br />&lt;td align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_othercol&quot;&gt;        <br /><br />&lt;?php foreach ($record['logo'] as $upload): ?&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['width'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['height'] ?&gt;&quot; alt=&quot;&quot; /&gt;<br />&lt;?php endforeach ?&gt;<br /><br />&lt;h5&gt;&lt;?php echo $record['hotel_name'] ?&gt;&lt;/h5&gt;<br />&lt;?php echo $record['details'] ?&gt;&lt;/td&gt;<br /><br />&lt;?php $maxCols=2; if (@++$count % $maxCols == 0): ?&gt; <br />&lt;/tr&gt; <br />&lt;tr&gt;	<br />&lt;?php endif; ?&gt; <br />    <br />   <br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br /><br />&lt;?php if (!$hotel_listingsRecords): ?&gt;<br />No records were found!&lt;br/&gt;&lt;br/&gt;<br />&lt;?php endif ?&gt;<br /><br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_linecell&quot;&gt;&lt;ul&gt;<br />&lt;li&gt;&lt;a href=&quot;#HotelMenu&quot;&gt;Return to menu&lt;/a&gt;&lt;/li&gt;<br />&lt;/ul&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_locationcell&quot;&gt;&lt;strong&gt;&lt;a name=&quot;LinoLakes&quot; id=&quot;LinoLakes&quot;&gt;&lt;/a&gt;Lino Lake&lt;/strong&gt;s&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br /><br />&lt;?php $count = 0; ?&gt; <br />&lt;?php foreach ($hotel_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['location'], 'Lino Lake')): ?&gt; <br /><br />&lt;td align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_othercol&quot;&gt;        <br /><br />&lt;?php foreach ($record['logo'] as $upload): ?&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['width'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['height'] ?&gt;&quot; alt=&quot;&quot; /&gt;<br />&lt;?php endforeach ?&gt;<br /><br />&lt;h5&gt;&lt;?php echo $record['hotel_name'] ?&gt;&lt;/h5&gt;<br />&lt;?php echo $record['details'] ?&gt;&lt;/td&gt;<br /><br />&lt;?php $maxCols=2; if (@++$count % $maxCols == 0): ?&gt; <br />&lt;/tr&gt; <br />&lt;tr&gt;	<br />&lt;?php endif; ?&gt; <br /><br /><br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br /><br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_linecell&quot;&gt;&lt;ul&gt;<br />&lt;li&gt;&lt;a href=&quot;#HotelMenu&quot;&gt;Return to menu&lt;/a&gt;&lt;/li&gt;<br />&lt;/ul&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_locationcell&quot;&gt;&lt;strong&gt;&lt;a name=&quot;NorthBranch&quot; id=&quot;NorthBranch&quot;&gt;&lt;/a&gt;North Branch&lt;/strong&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br /><br />&lt;?php $count = 0; ?&gt; <br />&lt;?php foreach ($hotel_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['location'], 'North Branch')): ?&gt; <br /><br />&lt;td align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_othercol&quot;&gt;        <br /><br />&lt;?php foreach ($record['logo'] as $upload): ?&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['width'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['height'] ?&gt;&quot; alt=&quot;&quot; /&gt;<br />&lt;?php endforeach ?&gt;<br /><br />&lt;h5&gt;&lt;?php echo $record['hotel_name'] ?&gt;&lt;/h5&gt;<br />&lt;?php echo $record['details'] ?&gt;&lt;/td&gt;<br /><br />&lt;?php $maxCols=2; if (@++$count % $maxCols == 0): ?&gt; <br />&lt;/tr&gt; <br />&lt;tr&gt;	<br />&lt;?php endif; ?&gt; <br /><br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br /><br /><br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_linecell&quot;&gt;&lt;ul&gt;<br />&lt;li&gt;&lt;a href=&quot;#HotelMenu&quot;&gt;Return to menu&lt;/a&gt;&lt;/li&gt;<br />&lt;/ul&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_locationcell&quot;&gt;&lt;strong&gt;&lt;a name=&quot;VadnaisHeights&quot; id=&quot;VadnaisHeights&quot;&gt;&lt;/a&gt;Vadnais Heights&lt;/strong&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br /><br />&lt;?php $count = 0; ?&gt; <br />&lt;?php foreach ($hotel_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['location'], 'Vadnais Heights')): ?&gt; <br /><br />&lt;td align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_othercol&quot;&gt;        <br /><br />&lt;?php foreach ($record['logo'] as $upload): ?&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['width'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['height'] ?&gt;&quot; alt=&quot;&quot; /&gt;<br />&lt;?php endforeach ?&gt;<br /><br />&lt;h5&gt;&lt;?php echo $record['hotel_name'] ?&gt;&lt;/h5&gt;<br />&lt;?php echo $record['details'] ?&gt;&lt;/td&gt;<br /><br />&lt;?php $maxCols=2; if (@++$count % $maxCols == 0): ?&gt; <br />&lt;/tr&gt; <br />&lt;tr&gt;	<br />&lt;?php endif; ?&gt; <br /><br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br /><br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_linecell&quot;&gt;&lt;ul&gt;<br />&lt;li&gt;&lt;a href=&quot;#HotelMenu&quot;&gt;Return to menu&lt;/a&gt;&lt;/li&gt;<br />&lt;/ul&gt;&lt;/td&gt;<br />&lt;/tr&gt;<br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_locationcell&quot;&gt;&lt;a name=&quot;WhiteBearLake&quot; id=&quot;WhiteBearLake&quot;&gt;&lt;/a&gt;White Bear Lake&lt;/td&gt;<br />&lt;/tr&gt;<br /><br />&lt;?php $count = 0; ?&gt; <br />&lt;?php foreach ($hotel_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['location'], 'White Bear Lake')): ?&gt; <br /><br />&lt;td align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_othercol&quot;&gt;        <br /><br />&lt;?php foreach ($record['logo'] as $upload): ?&gt;<br />&lt;img src=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['width'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['height'] ?&gt;&quot; alt=&quot;&quot; /&gt;<br />&lt;?php endforeach ?&gt;<br /><br />&lt;h5&gt;&lt;?php echo $record['hotel_name'] ?&gt;&lt;/h5&gt;<br />&lt;?php echo $record['details'] ?&gt;&lt;/td&gt;<br /><br />&lt;?php $maxCols=2; if (@++$count % $maxCols == 0): ?&gt; <br />&lt;/tr&gt; <br />&lt;tr&gt;	<br />&lt;?php endif; ?&gt; <br /><br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br /><br />&lt;tr&gt;<br />&lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot; class=&quot;hotel_linecell&quot;&gt;&lt;ul&gt;<br />&lt;li&gt;&lt;a href=&quot;#HotelMenu&quot;&gt;Return to menu&lt;/a&gt;&lt;/li&gt;<br />&lt;/ul&gt;<br />]]></description>
          <pubDate>Mon, 11 Jan 2010 09:14:24 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201052#post2201052</guid>
        </item>
                <item>
          <title>No records in category</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201024#post2201024</link>
          <description><![CDATA[Ok.. I have a listing for hotels.. in the CMS when you add a hotel, you select from a pre determined list for that hotels location.<br /><br />So on the website I have all the hotels listed and categorized by location using:<br />&lt;?php if (strpos($record['location'], 'Ham Lake')): ?&gt; <br /><br />Now i need a solution to display the &quot;No Records Found&quot; if there are no records for that current location.<br />This doesnt work because its looking at ALL records not just ones labeled with the category location:<br />&lt;?php if (!$hotel_listingsRecords): ?&gt;<br />No records were found!&lt;br/&gt;&lt;br/&gt;<br />&lt;?php endif ?&gt;<br /><br />So im assuming its just tweaking this line... but I cant figure it out:<br />&lt;?php if (!$hotel_listingsRecords): ?&gt;<br />]]></description>
          <pubDate>Fri, 08 Jan 2010 16:42:29 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201024#post2201024</guid>
        </item>
                <item>
          <title>Re: [chris] Details Page no record found</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2200383#post2200383</link>
          <description><![CDATA[cool thanks!! I actually rigged it to work using another way which is probably more complicated... but ill give your suggestion a shot and see how it works.<br />]]></description>
          <pubDate>Tue, 24 Nov 2009 14:40:58 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2200383#post2200383</guid>
        </item>
                <item>
          <title>Re: [chris] Multiple Check box list</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2200375#post2200375</link>
          <description><![CDATA[perfecto!! thanks<br />]]></description>
          <pubDate>Mon, 23 Nov 2009 09:11:03 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2200375#post2200375</guid>
        </item>
                <item>
          <title>Multiple Check box list</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2200334#post2200334</link>
          <description><![CDATA[See below: 'category' is the name of my multiple checkbox list<br />Simulcast Racing is one of the list items. so in the code below, it will only display Promotions that have Simulcast selected. <br /><br />My problem is, I need to select 2 options for a promotion. So for below I want it to display promotions with Simulcast Racing and Live Racing selected.  how do I do this?<br /><br />&lt;?php foreach ($promotions_managerRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['category'], 'Simulcast Racing')): ?&gt;<br />&lt;li&gt;&lt;a href=&quot;../rewards/promotions.php#&lt;?php echo $record['num'] ?&gt;&quot;&gt;&lt;?php echo $record['title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br />]]></description>
          <pubDate>Thu, 19 Nov 2009 14:31:39 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2200334#post2200334</guid>
        </item>
                <item>
          <title>Re: [jonoc73] Multi Value Checkbox List Problem</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2200332#post2200332</link>
          <description><![CDATA[i have a similar issue... how do I display if multiple items are checked off?<br />]]></description>
          <pubDate>Thu, 19 Nov 2009 13:36:04 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2200332#post2200332</guid>
        </item>
                <item>
          <title>Re: [gkornbluth] Details Page no record found</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2200328#post2200328</link>
          <description><![CDATA[I got it....sorry.<br /><br />Now, just need help with the removing of the header text if there are no records in that section.<br /><br />Heres how its set up.. http://runningaces.mriinteract.net/employment/<br /><br />in the CMS I have a Employment listings where you can add new job listings... then you select which category it show show up in.<br /><br />If there are no job listings in a certain category, I would like that category header to not display.<br /><br />Heres how the listings are set up:<br /><br />&lt;h3&gt;&lt;strong&gt;CARD ROOM&lt;/strong&gt;&lt;/h3&gt;<br />&lt;ul&gt;<br />&lt;?php foreach ($employment_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['category'], 'Card Room')): ?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['job_title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br />&lt;/ul&gt;<br /><br />&lt;h3&gt;&lt;strong&gt;FACILITIES&lt;/strong&gt;&lt;/h3&gt;<br />&lt;ul&gt;<br />&lt;?php foreach ($employment_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['category'], 'Facilities')): ?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['job_title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br />&lt;/ul&gt;<br /><br />&lt;h3&gt;&lt;strong&gt;FINANCE&lt;/strong&gt;&lt;/h3&gt;<br />&lt;ul&gt;<br />&lt;?php foreach ($employment_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['category'], 'Finance')): ?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['job_title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br />&lt;/ul&gt;<br /><br />&lt;h3&gt;&lt;strong&gt;FOOD &amp;amp; BEVERAGE&lt;/strong&gt;&lt;/h3&gt;<br />&lt;ul&gt;<br />&lt;?php foreach ($employment_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['category'], 'Food and Beverage')): ?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['job_title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br />&lt;/ul&gt;<br /><br />&lt;h3&gt;&lt;strong&gt;HUMAN RESOURCES&lt;/strong&gt;&lt;/h3&gt;<br />&lt;ul&gt;<br />&lt;?php foreach ($employment_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['category'], 'Human Resources')): ?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['job_title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br />&lt;/ul&gt;<br /><br />&lt;h3&gt;&lt;strong&gt;INFORMATION TECHNOLOGY&lt;/strong&gt;&lt;/h3&gt;<br />&lt;ul&gt;<br />&lt;?php foreach ($employment_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['category'], 'Information Technology')): ?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['job_title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br />&lt;/ul&gt;<br /><br />&lt;h3&gt;&lt;strong&gt;MARKETING&lt;/strong&gt;&lt;/h3&gt;<br />&lt;ul&gt;<br />&lt;?php foreach ($employment_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['category'], 'Marketing')): ?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['job_title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br />&lt;/ul&gt;<br /><br />&lt;h3&gt;&lt;strong&gt;MUTUELS&lt;/strong&gt;&lt;/h3&gt;<br />&lt;ul&gt;<br />&lt;?php foreach ($employment_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['category'], 'Mutuels')): ?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['job_title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br />&lt;/ul&gt;<br /><br />&lt;h3&gt;&lt;strong&gt;RACING&lt;/strong&gt;&lt;/h3&gt;<br />&lt;ul&gt;<br />&lt;?php foreach ($employment_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['category'], 'Racing')): ?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['job_title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br />&lt;/ul&gt;<br /><br />&lt;h3&gt;&lt;strong&gt;SECURITY/SURVEILLANCE&lt;/strong&gt;&lt;/h3&gt;<br />&lt;ul&gt;<br />&lt;?php foreach ($employment_listingsRecords as $record): ?&gt;<br />&lt;?php if (strpos($record['category'], 'Security')): ?&gt;<br />&lt;li&gt;&lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;&lt;?php echo $record['job_title'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;<br />&lt;/ul&gt;<br />]]></description>
          <pubDate>Thu, 19 Nov 2009 11:05:24 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2200328#post2200328</guid>
        </item>
                <item>
          <title>Re: [gkornbluth] Details Page no record found</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2200326#post2200326</link>
          <description><![CDATA[Did not work... still have the same issue..<br /><br />let focus on the first issue.. then we figure out the second question i had.<br /><br />ok lets try again..<br /><br />http://runningaces.mriinteract.net/employment/index.php<br />This page lists all the job listings.. (page displays fine)<br /><br />heres the header php code:<br /><br />&lt;?php<br />  <br />  require_once &quot;xxx&quot;;<br /><br />  list($ad_managerRecords, $ad_managerMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'ad_manager',<br />	'limit'       =&gt; '2',<br />    'orderBy'     =&gt; 'RAND()',<br />	'where' =&gt; &quot; page_display LIKE '%\tAll\t%' &quot;,<br />  ));<br /><br />?&gt;<br />&lt;?php<br />  <br />  require_once &quot;xxx&quot;;<br /><br />  list($employment_pageRecords, $employment_pageMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'employment_page',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '1',<br />  ));<br />  $employment_pageRecord = @$employment_pageRecords[0]; // get first record<br /><br />  // show error message if no matching record is found<br />  if (!$employment_pageRecord) {<br />    print &quot;Record not found!&quot;;<br />    exit;<br />  }<br /><br />?&gt;<br />&lt;?php<br />  <br />  require_once &quot;xxx&quot;;<br /><br />  list($employment_listingsRecords, $employment_listingsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'employment_listings',<br />  ));<br /><br />?&gt;<br /><br /><br />Then when you click on a job listing... it should take you to the details page:<br />http://runningaces.mriinteract.net/employment/joblistings.php<br /><br />this works fine: http://runningaces.mriinteract.net/employment/joblistings.php?HOUSEKEEPER-1<br /><br />but any other job listing does not... i get the Record not found messages..<br /><br />HEres the code on the details page:<br /><br />&lt;?php<br />  <br />  require_once &quot;xxx&quot;;<br /><br />  list($ad_managerRecords, $ad_managerMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'ad_manager',<br />	'limit'       =&gt; '2',<br />    'orderBy'     =&gt; 'RAND()',<br />	'where' =&gt; &quot; page_display LIKE '%\tAll\t%' &quot;,<br />  ));<br /><br />?&gt;<br />&lt;?php<br />  <br />  require_once &quot;xxx&quot;;<br /><br />  list($employment_pageRecords, $employment_pageMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'employment_page',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '1',<br />  ));<br />  $employment_pageRecord = @$employment_pageRecords[0]; // get first record<br /><br />  // show error message if no matching record is found<br />  if (!$employment_pageRecord) {<br />    print &quot;Record not found!&quot;;<br />    exit;<br />  }<br /><br />?&gt;<br />&lt;?php<br />  <br />  require_once &quot;xxx&quot;;<br /><br />  list($employment_listingsRecords, $employment_listingsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'employment_listings',<br />    'limit'       =&gt; '1',<br />  ));<br />  $employment_listingsRecord = @$employment_listingsRecords[0]; // get first record<br /><br />  // show error message if no matching record is found<br />  if (!$employment_listingsRecord) {<br />    print &quot;Record not found!&quot;;<br />    exit;<br />  }<br /><br />?&gt;<br /><br /><br />can i send you files to review?<br />I think the conflict has to do with having multiple list records/single record on the same page.<br />]]></description>
          <pubDate>Thu, 19 Nov 2009 10:11:44 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2200326#post2200326</guid>
        </item>
                <item>
          <title>Details Page no record found</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2200313#post2200313</link>
          <description><![CDATA[I have a list page set up and when you click on an item in the list it should then link to the Details Page.<br /><br />Only one list item is linking correctly, the other give me &quot;No Record Found&quot; message.<br /><br />Im not sure if it is because on the details page, I have another multiple records list displaying.<br /><br />HEres the code at the top of my detaisl page:<br /><br />&lt;?php<br />  <br />  require_once &quot;/XXXXXXX&quot;;<br /><br />  list($ad_managerRecords, $ad_managerMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'ad_manager',<br />	'limit'       =&gt; '2',<br />    'orderBy'     =&gt; 'RAND()',<br />	'where' =&gt; &quot; page_display LIKE '%\tAll\t%' &quot;,<br />  ));<br /><br />?&gt;<br />&lt;?php<br />  <br />  require_once &quot;/XXXXXXX&quot;;<br /><br />  list($employment_pageRecords, $employment_pageMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'employment_page',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '1',<br />  ));<br />  $employment_pageRecord = @$employment_pageRecords[0]; // get first record<br /><br />  // show error message if no matching record is found<br />  if (!$employment_pageRecord) {<br />    print &quot;Record not found!&quot;;<br />    exit;<br />  }<br /><br />?&gt;<br />&lt;?php<br />  <br />  require_once &quot;/XXXXXXX&quot;;<br /><br />  list($employment_listingsRecords, $employment_listingsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'employment_listings',<br />    'limit'       =&gt; '1',<br />  ));<br />  $employment_listingsRecord = @$employment_listingsRecords[0]; // get first record<br /><br />  // show error message if no matching record is found<br />  if (!$employment_listingsRecord) {<br />    print &quot;Record not found!&quot;;<br />    exit;<br />  }<br /><br />?&gt;<br /><br /><br /><br />The employment_listings is the record that is not displaying..<br />you can preview at: http://runningaces.mriinteract.net/employment/index.php<br />The Housekeeping works but not the others.<br /><br />Also I would like to know if there is a way for the Job Category title not display if there are no records under that category.<br /><br />I have set up just one multiple record manager in the CMS and when you enter a job listing, you select a category the listing goes under.<br /><br />For if you look at the link above... I would like &quot;Card Room, Finance etc&quot; not display since there are no records under that category<br /><br />THANKS IN ADVANCE!<br />]]></description>
          <pubDate>Wed, 18 Nov 2009 16:35:09 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2200313#post2200313</guid>
        </item>
              </channel>
    </rss>
  