i have table html code in a var like
$table = "<table style="width: 100%">
<tr>
<td>Name</td>
<td>Age</td>
</tr>
<tr>
<td>Mark</td>
<td>30</td>
</tr>
</table>
";
is there a way to edit it in a simple textarea editor (without toolbar) but Does not appear like a source code , appear like design or templat and Then I will save it with a database with php form .
<textarea id="textarea_editor"><?php echo $table; ?></textarea>
Example :
