Jump to content

Help me fix this querry - going nuts!


tom11011

Recommended Posts

Basically, there are 2 required fields, but if other fields have data in them, it should query them.  Thenks in advance.

[code]
$query = "SELECT * FROM table WHERE sl = '$sl' and state = '$state'";

                if (strlen($type) > 0) {
                        $query = $query + " and type = '$type'";
                        }
                if (strlen($city) > 0) {
                        $query = $query + " and city = '$city'";
                        }
                if (strlen($zip) > 0) {
                        $query = $query + " and zip = '$zip'";
                        }
                if (strlen($status) > 0) {
                        $query = $query + " and status = '$status'";
                        }
                if (strlen($pricemin) > 0) {
                        $query = $query + " and price >= '$pricemin'";
                        }
                if (strlen($pricemax) > 0) {
                        $query = $query + " and price <= '$pricemax'";
                        }
                if (strlen($squarefeetmin) > 0) {
                        $query = $query + " and squarefeet >= '$squarefeetmin'";
                        }
                if (strlen($squarefeetmax) > 0) {
                        $query = $query + " and squarefeet <= '$squarefeetmax'";
                        }
                if (strlen($ppsfmin) > 0) {
                        $query = $query + " and ppsfmin >= '$ppsfmin'";
                        }
                if (strlen($ppsfmax) > 0) {
                        $query = $query + " and ppsfmax <= '$ppsfmax'";
                        }
                $query = $query + " ORDER BY price;";
[/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.