if you type html code outside of a php tag ex:
Code:
</head>
<style type="css/text">a:hover {font-weight: bold;}</script>
<body>
<?php
My Code Goes in here;
?>
it's the same as putting it in a print command, except you don't have to wory about escape characters for quotes or curly braces ;)
for further refference, if you want to use a character that you normaly wouldn't be able to, you just put in a backslash
\ in front of it
ex:
\{ or
\"
(I'm not 100% sure about the curly braces needing an escape character)