if we say:
$termstringDomain1 = "something";
$url = "somethingelse";
$url = 'http://' . $termstringDomain1 . '/' . $url;
the result if gives me is: http:///somethingelse instead of http://something/somethingelse
so basically it is ignoring $termstringDomain1
Any idea why?