В вашей базе данных должна храниться следующая строка (немного отличающаяся от вашей):
$teamName, is the name of a recently formed company hoping to take over the lucrative hairdryer design $sector.
Затем вы можете сделать одну из двух вещей:
$news = eval('return "'.$news.'";');
...or ...
$news = str_replace(array('$teamName','$sector'),array($teamName,$sector),$news);
Или еще лучше, используйте sprintf()
, где строка:
%s, is the name of a recently formed company hoping to take over the lucrative hairdryer design %s.
... и вы получите фактическое значение, подобное этому:
$news = sprintf($news, $teamName, $sector);