php add query parameter to url code example
Example: php add get to link
$url .= $url.(parse_url($url, PHP_URL_QUERY) ? '&' : '?').'category=action';
$url .= $url.(parse_url($url, PHP_URL_QUERY) ? '&' : '?').'category=action';