hillbillyfritz
Technical User
I need to set a variable to some HTML. Can I do this without putting all of the code on one line?
How do I make it more like this?
Thanks for the help.
Code:
$var = "<html>\n<head>\n</head>\n<body>\n</body>\n</html>;
How do I make it more like this?
Code:
$var = "<html>
<head>
</head>
<body>
</body>
</html>;
Thanks for the help.