Joe Burnett
New member
I'm trying to do something like this...
<?php
echo "<p>Test</p>";
echo "<input type=\"text\" name=\"Testing\"";
?>
See I want to do this but if you execute this the html will print out Test and a text box. I want it to literally print out html code.
<?php
echo "<p>Test</p>";
echo "<input type=\"text\" name=\"Testing\"";
?>
See I want to do this but if you execute this the html will print out Test and a text box. I want it to literally print out html code.