hello Guys i have Question That is Related To search Engine Query String
if i search
so My Site Should Automatic parse that Query Nd Show result
on Search Engline
How I can do dis ?
is Dis Is Enough
i don't want to show Google search(Grabbing There Search page) related to There Keyword i only like to Prase it to show internal result
That is similar to koolwap.in
if i search
Code:
Men In black Latest mobile game
on Search Engline
How I can do dis ?
is Dis Is Enough
Code:
$match = preg_match('/&q=([a-zA-Z0-9+-]+)/',$refer, $output); $querystring = $output[0]; $querystring = str_replace('&q=','',$querystring); $keywords = explode('+',$querystring); return $keywords;
That is similar to koolwap.in
Comment