0

我正在尝试向 url 添加其他变量。例如:

example.co.uk/searchtestingv2.php?categories=rockandpop

并添加:&prices=PriceLow

example.co.uk/searchtestingv2.php?categories=rockandpop&value=PriceLow

我试过这个:

$query = parse_url($url, PHP_URL_QUERY);

// Returns a string if the URL has parameters or NULL if not
if( $query ) {
    $url .= '&categories';
}
else {
    $url .= '?categories';
}

另一件事是我尝试手动添加它,即:

http://www.example.co.uk/searchtestingv2.php?categories=rockandpop&value=PriceLow

它不起作用。

这是我的代码:

if($_GET['categories'] == 'rockandpop') {   

        $query = "SELECT * FROM searchacts WHERE category='Rock and Pop'";   
    } 

        if($_GET['categories'] == 'tributebands') {   

        $query = "SELECT * FROM searchacts WHERE category='Tribute Bands'";   
    } 

if(isset($_GET['value'])) { 
    if($_GET['value'] == 'PriceLow') { 

        $query = "SELECT * FROM searchacts ORDER BY price ASC";   
    }   
    elseif($_GET['value'] == 'PriceHigh') {   

        $query = "SELECT * FROM searchacts ORDER BY price DESC";   
    }
    elseif($_GET['value'] == 'NameAZ') {   

        $query = "SELECT * FROM searchacts ORDER BY name ASC";   
    } 

    elseif($_GET['value'] == 'NameZA') {   

        $query = "SELECT * FROM searchacts ORDER BY name DESC";  

    }

    else {   

        $query = "SELECT * FROM searchacts";   
    }  
4

1 回答 1

0
function UpdateUrlParam(name, value)
{
  var href = window.location.href;
  var regex = new RegExp("[&\\?]" + name + "=");
  if(regex.test(href))
  {
    regex = new RegExp("([&\\?])" + name + "=\\d+");
    window.location.href = href.replace(regex, "$1" + name + "=" + value);
  }
  else
  {
    if(href.indexOf("?") > -1)
      window.location.href = href + "&" + name + "=" + value;
    else
      window.location.href = href + "?" + name + "=" + value;
  }
}
UpdateUrlParam('value', 'priceLow);
于 2013-03-02T21:55:36.757 回答