I am trying to use the following line of PHP code in one of my pages:
<input name="from" id="from" value="<?php echo $_GET['from'];?>" type="text" />
But instead of displaying an empty "from" input field (before typing anything into it), it displays <?php echo $_GET['from'];.
Am I missing something?
Clarification: I am entering this line of PHP code (in addition to some HTML) from the Admin's Edit Page (the HTML tab of course, not the Visual one).