I have some textbox. Between <textarea> </textarea> I inserting two values $firstname, $lastname. Now I’d like to make bold only $firstname.
When I’m trying this code below it is doesn’t working.
"<textarea><b>" . $firstname. "</b>" . $lastname . "<textarea>"
How can I do it correctly. Is it possible? When I am using <div> tags it’s doesn’t working too.
Don´t use HTML inside textareas, they just take plain text.
Check some WYSIWYG(What You See Is What You Get) that may help you:
http://www.1stwebdesigner.com/design/10-best-wysiwyg-text-and-html-editors-for-your-next-project/
Good Luck!