Jump to content

Complex Search


stuffradio

Recommended Posts

I'm trying to do a php search script that searches a mysql table with 4 or 5 different checkbox items and about 12 other fields.

 

I'm not sure how the best way would be to do this... I'm trying to use foreach, but how would I do this with the 5 different fields needing to have a checkbox, and they each have at least 2 values.

 

Example:

<input type='checkbox' name='Area[]' value='A'>

<input type='checkbox' name='Area[]' value='B'>

<input type='checkbox' name='Area[]' value='C'>

 

<input type='checkbox' name='City[]' value='A'>

<input type='checkbox' name='City[]' value='B'>

<input type='checkbox' name='City[]' value='C'>

 

etc.

etc.

Link to comment
Share on other sites

try something like

<?php
$where = array();
$whereclause = '';

if (isset($_POST['Area']))
{
    $areas = join("','", $_POST['Area']);
    $where[] = "(Area IN ('$areas'))";
}

if (isset($_POST['City']))
{
    $cities = join("','", $_POST['City']);
    $where[] = "(City IN ('$cities'))";
}

if (count($where)) $whereclause = 'WHERE' . join (' AND ', $where);

$sql = "SELECT * FROM mytable $whereclause";
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.