With a correct escape. Try reading up on syntax in the manual. You can even download your own free copy. More satisfying to solve it yourself than mooching forums for the answer surely.
And Ive never seen anything like this. Did you make it up or did someone give you it.
Code:
$htmlwebsite = '<a href<>\\'.$website.'\\>'.$website.'';
Below should be correct
Code:
$htmlwebsite = "<a href=\"".$website.">".$website."</a>";
Also use the editor code wrappers as this bb will not always correctly display your code.[/code]