I have the following problem. I want to echo a php variable in a html textarea. But i cant get it to work out for me. Here is my code.
<?php
$y = 123
?>
<textarea name="delay" cols="50"rows="5" id="delay">
<?php echo $y ?>
</textarea>
Here is what I see