Hi I am using Codeigniter Framework for website,
This is technical article website in that i am adding articles of different lanuages
In that when i save the article along with the code for e.g. It inserted properly in the database.
<pre class="prettyprint" id="html">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
<head>
<meta name="copyright" content="Atos Origin" />
<title>Select Option Demo Using Tapestry</title>
</head>
<body>
<h1>Payment Card Demo</h1>
<form t:type="form" t:id="cardForm" id="cardForm" method="post">
<t:label for="cardTypes"/>
<t:select t:id="cardTypes"/>
</form>
</body>
</html>
</pre>
But When I retrieve it from database to edit, it is converted in actual code
<pre class="prettyprint" id="html">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd">
<head>
<meta name="copyright" content="Atos Origin" />
<title>Select Option Demo Using Tapestry</title>
</head>
<body>
<h1>Payment Card Demo</h1>
<form t:type="form" t:id="cardForm" id="cardForm" method="post">
<t:label for="cardTypes"/>
<t:select t:id="cardTypes"/>
</form>
</body>
</html>
</pre>
But don't want such conversion, so is there any solution ,
Please suggest
Thanks
<and>character entities and display them as their rendered equivalents... – Marc B Sep 1 '12 at 5:25