{textarea} smarty php
- by Kyle Sevenoaks
Hi, further to a previous question, I have this code:
{textarea onblur="if(this.value=='') this.value='Skriv her';" onfocus="if(this.value=='Skriv her') this.value='';"}
And I want the output to be
<textarea onblur="if(this.value=='') this.value='Skriv her';" onfocus="if(this.value=='Skriv her') this.value='';">Write here!</textarea>
I tried [/textarea} but it didn't work in my template file.
Is it possible to make this in smarty/php?
Thanks :)