I want my user to select templateId from the select list, when user select then query the database to bring the template Contents based on templateId . Then I would like show the Template Content to textarea but it shows the html tags in the TinyMCE textarea rather showing the Design (View).
It works only when I show the same templateContents on page load but when I try to show the same contents by getting from the database it fails.
Hope it all gives you any clue what I required.
In step 1 the code is working fine...
<textarea id="elm1" name="elm1" rows="15" cols="80" style="width: 50%">
<?php echo htmlspecialchars($ResultArray[0]['Contents']); ?>
</textarea>
...but onchange value of select I am calling selected template:
<select name="templateId" id="templateId" onchange="GetTemplateView(this.value);">
<?php for($i=0; $i<count($ResultArray); $i++){ ?>
<option value="<?php echo $ResultArray[$i]['TemplateId']; ?>"><?php echo $ResultArray[$i]['Name']; ?></option>
<?php }?>
</select>
Ajax request is:
function GetTemplateView(templateId)
{
var xmlhttp;
if (window.XMLHttpRequest)
{ // code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
}
else
{ // code for IE6, IE5
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
if (navigator.appName == 'Microsoft Internet Explorer')
document.getElementById("templateView").outerHTML = xmlhttp.responseText;
else
document.getElementById("templateView").innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("GET", "js/GetTemplateView.php?id=" + templateId + "&encode=true", true);
xmlhttp.send();
}
GetTemplateView.php:
<?php
include_once("../classes/db_utility_class.php");
$ClassObj= new Cdb();
$input = $_GET["id"];
$Encode = $_GET["encode"];
if($input!=0)
{
$query = "SELECT Contents FROM mailtemplate WHERE TemplateId=".$input;
$result = $ClassObj->getRowFromDB($query);
if($result != "Error in query" || $result != "No Record Found")
{
if($Encode)
{
echo '<textarea id="ele1" name="ele1" rows="15" cols="80" style="width: 50%">';
echo htmlspecialchars($result['Contents']);
echo '</textarea>';
}
else
echo $result['Contents'];
}
}
?>
