I have a html file like the below, that calls a php file
<html>
<head>
</head>
<body>
<script language="javascript" src="noname1.php"></script>
</body>
</html>
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>")';
?>