vote up 1 vote down star

So im trying to find a script that can start me off with creating an 'refine search' panel which will be a form, hopefully something close to what Ebay have got at the moment.

Whilst I know this is going to be a form and using the GET method, I cant find a script that can parse a url for multiple params and update the query all dynamically.

Im not sure quite how to do this without a million and one if statements. (about 10 or so possible GET variables but could be a lot more soon.)

So i need a simple:

  • foreach GET add WHERE field=GET[variable]

any ready made scripts you know of?

flag

3 Answers

vote up 2 vote down check

I don't know of some canned script to do this.

But it's quite easy to write it yourself.

<?PHP
    $valid_fields = array('field1','field2',...'fieldN');

    $where = "WHERE 1=1 ";

    foreach($valid_fields as $fname){
       if (! empty($_GET[$fname])){
          $where .= " AND $fname='" . mysql_real_escape_string($_GET[$fname]) ."'";
       }
    }

This code simply loops over your expected input variables, and if they're passed as a parameter in $_GET, ads an AND to the WHERE clause.

Then you just tack the $where onto the end of your query (whatever it happens to be):

$sql = 'SELECT * FROM some_table ' . $where;

Edit for example code to hide column names:

<?PHP
//keys are parameter names in _GET, values are database column names.
$fieldmap = array(
'fname'=>'first_name',
'lname'=>'last_name'
);

$where = '1=1 ';

foreach($fieldmap as $get_name => $col_name){
  if (! empty($_GET[$get_name])){
    $where .= " AND $col_name = '" . mysql_real_escape_string($_GET[$get_name]) . "'";
  }
}
?>
link|flag
really very very good, however this exposes my table names which im not too happy with! any chance i could mask them with another array like the $valid_fields so GET[name] would become GET[whateverhere] – bluedaniel Sep 21 at 0:04
1  
You could use another associative array... So $mask = array('url_name'=>'table_name'); Then instead of using $_GET['table_name'] you'd use $mask[$_GET['url_name']; – BraedenP Sep 21 at 0:09
oh youve lost me a bit there, not quite sure how to put that on the page, recursive arrays baffle me a bit in terms of formatting, any chance you can show me in an answer so i can see the formatting? thanks for this help by the way! – bluedaniel Sep 21 at 0:16
Answer edited to do what BraedenP is talking about (more or less, I think) – timdev Sep 21 at 0:37
Yep, that should work. :) That's exactly what I was talking about. – BraedenP Sep 21 at 0:40
show 4 more comments
vote up 0 vote down

I know next to nothing about PHP, but there's some discussion about retrieving and parsing the query string here (scroll down a bit):

http://us2.php.net/manual/en/reserved.variables.get.php

You can probably lift some useful code out of there to extract all of your GET parameters and use them to construct your WHERE clause. I'm not sure how your data model is set up, so I can't offer any detailed advice on that -- besides the usual advice of sanitizing all your inputs so that you don't end up with a Bobby Tables on your hands.

link|flag
vote up 0 vote down

You mean something like this?

<?php
$query = "SELECT [WHATEVER YOU'RE SELECTING] FROM your_table WHERE ";
$length = count($_GET);
$count = 0;
foreach($_GET as $key => $value){
    if($count <= $length){
        $query .= "$key='{$value}' OR ";
    }else{
        $query .= "$key='{$value}'";
    }

    $count++;
}
?>

That will loop through your $_GET array, adding key='value' type strings to the query string. Then once you're done recursing through the array, you can do whatever you want with the complete query string.

As per usual, use standard sanitizing functions as you collect your inputs (strip_slashes, mysql_real_escape_string, etc.)

link|flag
-1 because you're promoting SQL Injection vulnerabilities. – timdev Sep 20 at 23:59
The last sentence of my answer explicitly states that I included no sanitizing functions. – BraedenP Sep 21 at 0:02
gah. sorry about that. make another edit so I can remove the downvote. – timdev Sep 21 at 0:32

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.