Jump to content

How to include specific column elements in MySQL Select clause as per user input


simplysandeep

Recommended Posts

I've a simple Inset List (jQuery Mobile) of several items with a Flip switch, Drop down, check box and Slider elements.

 

I have wrapped this Inset List inside a HTML Form.

 

<code>

[pre]<div data-role="fieldcontain">

      <ul data-role="listview" data-inset="true">

        <li data-role="list-divider"> Inhouse capabilities </li>

        <li> <label for="flip-b">Project Manager</label>

            <select name="slider" id="flip-b" data-role="slider">

                <option value="no">No</option>

                <option value="yes">Yes</option>

            </select>

        </li> 

        <li> <label for="flip-b">Site Supervisor</label>

            <select name="slider" id="flip-b" data-role="slider">

                <option value="no">No</option>

                <option value="yes">Yes</option>

            </select>

        </li>

        <li><label for="flip-b">Architect</label>

            <select name="slider" id="flip-b" data-role="slider">

                <option value="no">No</option>

                <option value="yes">Yes</option>

            </select>

          </li>

        <li><label for="flip-b">Builderworks</label>

            <select name="slider" id="flip-b" data-role="slider">

                <option value="no">No</option>

                <option value="yes">Yes</option>

            </select>

          </li>

          <li><label for="flip-b">Electrical</label>

            <select name="slider" id="flip-b" data-role="slider">

                <option value="no">No</option>

                <option value="yes">Yes</option>

            </select>

          </li>

          <li><label for="flip-b">Mechanical</label>

            <select name="slider" id="flip-b" data-role="slider">

                <option value="no">No</option>

                <option value="yes">Yes</option>

            </select>

          </li>

          <li><label for="flip-b">Hydraulics</label>

            <select name="slider" id="flip-b" data-role="slider">

                <option value="no">No</option>

                <option value="yes">Yes</option>

            </select>

          </li>

          <li><label for="flip-b">Joinery</label>

            <select name="slider" id="flip-b" data-role="slider">

                <option value="no">No</option>

                <option value="yes">Yes</option>

            </select>

          </li>

          <li>

                <label for="select-choice-1" class="select">Main Location:</label>

                  <select name="select-choice-1" id="select-choice-1">

                      <option value="NSW">NSW</option>

                      <option value="ACT">ACT</option>

                      <option value="VIC">VIC</option>

                      <option value="SA">SA</option>

                      <option value="QLD">QLD</option>

                      <option value="NT">NT</option>

                      <option value="WA">WA</option>

                      <option value="TAS">TAS</option>

                    </select>                   

          </li> <!-- Select Menus: Main Location-->

 

            <li>   

                <div  data-role="fieldcontain">

                <fieldset data-role="controlgroup">

                    <legend>CBA Reference</legend>

                    <input type="checkbox" name="checkbox-1a" id="checkbox-1a" class="custom" />

                    <label for="checkbox-1a">Commercial</label>

                    <input type="checkbox" name="checkbox-2a" id="checkbox-2a" class="custom" />

                    <label for="checkbox-2a">Retail</label>

                </fieldset>

                </div>

            </li>                         

</ul>           

    </div> <!-- End of Field Contain div tag --> 

<a href="#additionalinfo" data-role="button" data-inline="true" data-iconpos="left" data-theme="b">Additional Info</a>

<a href="./search2.html" rel="external" data-ajax="false" data-role="button" data-inline="true" data-icon="search" data-iconpos="left" data-theme="e">Search</a>

[/pre]</code>

 

I want to know, how I can include only the elements the user selected in my SQL query.

Lets say, User wants to find the Electrical workers in QLD, then he will select Yes for Electrical and QLD as Main Location and the other items he would not touch.

Now, how can I include only those two values in the select clause.

Say, Select Electrical, Main Location from table where Main location='QLD'.

I used POST method to gather users input. I use PHP, MySQL for this project.

Any ideas on how to achieve this.

 

Regards Sandeep

Link to comment
Share on other sites

Hi there

 

In another forum. I got below response, but I did not understand this. Can some one please help me out?

 

Response:

I didn't read the fields so you'll have to adapt but it's more of a php question than a mysql question. You'd have to build a list of criterias and then implode them together.

 

<code>

$criterias = array();

 

if(isset($_POST['option1']) && $_POST['option1'] == 'yes'){

    $criterias[] = '(mytable.myfield1 = 1)

}

 

if(isset($_POST['option2']) && $_POST['option2'] == 'yes'){

    $criterias[] = '(mytable.myfield2 = 1)

}

 

$sql = 'SELECT * FROM mytable'.(count($criterias) > 0 ? ' WHERE '.implode(' OR ', $criterias) : '').' ORDER BY mytable.sortkey';

 

</code>

 

This will help you build any kind of criteria list that you want. Note that i used OR in the implode because these criterias seem to be inclusive, so you show workers based on their type based on the user's choice. But i aint sure exactly if thats what you wanted.

 

Note also that you can setup your criterias to be much more complex and combine two information together such as:

 

<code>

if(isset($_POST['option2']) && $_POST['option2'] == 'yes'){

    $criterias[] = '(mytable.myfield2 = 1 AND mytable.location = "'.$_POST['location'].'")

}

</code>

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.