I need to convert \[code\]HTML\[/code\] in template.As seen in image content should show as a template. I am using \[code\]table\[/code\] to show . but now i need to show it in template outputHere is my Code:\[code\]<table id="datatable" class="tablesorter"> <span id='errfrmMsg'></span> <thead> <tr> <th scope="col" id="">Name</th> <th scope="col" id="">Content</th> </tr> </thead> <tbody> <?php $templ_id = $_REQUEST['templ_id']; $getTemplateQuery = mysql_query("select * from templates where id = $templ_id"); $getTemplateRow = mysql_fetch_array($getTemplateQuery); ?> <tr> <td valign="top" width="125"><?php echo $getTemplateRow['templ_name'];?></td> <td valign="top" width="319"> <?php echo $templContent = $getTemplateRow['templ_content'];?> </tr> </tbody></table>\[/code\]Here is an Output: