Hi
Im trying to create a form object in PHP, its a multiline text field. The idea is to echo some code into it so that the client can copy it and paste it onto there site.
The problem is the textfield wont echo the code, the php code is below.
<?php
$test="yes";
echo "<textarea name=\"Code\" cols=\"70\" rows=\"6\" wrap=\"OFF\" class=\"Form-Box-Lite\">$test
</textarea> " ?>