I have a html file like the below, that calls a php file
[code]
[/code]In the php file I just want to create a link, but I only get simple text.
The php file is the following
<?php
echo 'document.write("<a href=\"http://google.com\" target=\"_blank\">Bring me to google</a>")';
?>