i have the following url string...
within the sting i would like to preg_match 'plumbing+service'
i have the following code that results in 'keywords=plumbing+service&' ....
how would i modify it to just get 'plumbing+service' ?
within the sting i would like to preg_match 'plumbing+service'
i have the following code that results in 'keywords=plumbing+service&' ....
Code:
preg_match('#keyword(.*?)&#', $page_urls[$i], $matched_param_keywords);
how would i modify it to just get 'plumbing+service' ?