I have the following code in part html/php:
ITEM1:
Select this link for the <a href="<?php echo $url; ?>about">about page</a>
Then I have this gettext example using sprintf:
ITEM2:
<?=sprintf(gettext("Your browser says you prefer the %s language."), $_SERVER["HTTP_ACCEPT_LANGUAGE"])?>
I have been trying for the past two hours how to incorporate ITEM1 into ITEM2?
Any help help on this would be great?