Hi All I need few advice to filter keyword from URL. Keyword is coming from www.mywebsite.com?keyword=kw1 So I need to get "kw1" from this url and to make report. Please give your advices.
This is an example how you can do it using PHP: <?php list($key,$value) = explode("=",parse_url("www.mywebsite.com?keyword=kw1",PHP_URL_QUERY)); echo($key." = ".$value); ?> PHP: