I have developed one webpage using php . I am executing some shell scripts through it and the shell scripts return some outputs (echo statements) . Those echo statements are saved in output1 , output2 etc .. This is the piece of code where I am redirecting those outputs to a text area.
<textarea>
<?php
echo $output1 ;
echo $output1 ;
?>
</textarea>
The output is getting correctly printed in text area. I need to make those statements bold , colourful . But I cant do the same. If I add span style colour and all inside the echo , the whole thing is getting printed in text area. Please help .
Thanks