Multiple Fields in CMS Drop Down

5 posts by 3 authors in: Forums > CMS Builder
Last Post: June 1, 2012   (RSS)

By nmsinc - May 22, 2012 - edited: May 22, 2012

I need to add city & state fields to the following CMS section drop down - see code below: ideas anyone?

Thanks - nmsinc

-----------------------------------------------------------------

<?php if ($CURRENT_USER['isAdmin']):?>
<?php
$where = "";
$where = "WHERE member_type = 'Insurance'";
?>
SELECT num, member_company_name
FROM `<?php echo $TABLE_PREFIX ?>member_companies`
<?php echo $where; ?>
ORDER BY member_company_name

<?php elseif (!$CURRENT_USER['isAdmin'] AND $CURRENT_USER['company_type'] == "Independent"): ?>
<?php
$where = "";
$where = "WHERE member_type = 'Insurance'";
?>
SELECT num, member_company_name
FROM `<?php echo $TABLE_PREFIX ?>member_companies`
<?php echo $where; ?>
ORDER BY member_company_name

<?php else: ?>
<?php
$where = "";
$where = "WHERE num = '".$CURRENT_USER['member_company_accounts']."'";
?>
SELECT num, member_company_name
FROM `<?php echo $TABLE_PREFIX ?>member_companies`
<?php echo $where; ?>
ORDER BY member_company_name

<?php endif ?>
-------------------------------------------------------------------
nmsinc

Re: [nmsinc] Multiple Fields in CMS Drop Down

By ross - May 23, 2012

Hi there.

Is all of this code going into the custom field in your section editor? Also, are the city & state fields actually in the same table you are searching in?

There will be a way to make this all happen. Let's get me up to speed with how things are setup first though :).

Let me know what you think. Thanks!
-----------------------------------------------------------
Cheers,
Ross Fairbairn - Consulting
consulting@interactivetools.com

Hire me! Save time by getting our experts to help with your project.
Template changes, advanced features, full integration, whatever you
need. Whether you need one hour or fifty, get it done fast with
Priority Consulting: http://www.interactivetools.com/consulting/

Re: [ross] Multiple Fields in CMS Drop Down

By nmsinc - May 31, 2012

Hi Ross,

Sorry for the delay - this is within the CMS section editor and the city and state fileds are within the same table as the company name!

Thanks - nmsinc
nmsinc

Re: [Jason] Multiple Fields in CMS Drop Down

By nmsinc - June 1, 2012

That works - thanks Jason!

nmsinc
nmsinc