Hello,
I show some data from the MySQL database in a Joomla (v 1.5.22) page and I have this code in ChronoForms (v 3.2):
then I use Chrono Connectivity (v2.0 RC3) to show the field data in the page.
I have an escape problem, for example when in the field data I have an apostrophe the code brokes and I don't visualize anything.
In fact, even the html should be encoded to be visualized properly.
Do someone knows how I can change the code, I guess with some php/mysql function to solve the problem?
Thank you
Luca
I show some data from the MySQL database in a Joomla (v 1.5.22) page and I have this code in ChronoForms (v 3.2):
<?php
$v_Languages = '{Languages}';
if ($v_Languages == "")
$v_Languages = "";
else
$v_Languages = '
<tr valign="top">
<td class="sx"><div align="right">Languages</div></td>
<td colspan="2">{Languages}</td>
</tr>
';
echo $v_Languages;
?>
then I use Chrono Connectivity (v2.0 RC3) to show the field data in the page.
I have an escape problem, for example when in the field data I have an apostrophe the code brokes and I don't visualize anything.
In fact, even the html should be encoded to be visualized properly.
Do someone knows how I can change the code, I guess with some php/mysql function to solve the problem?
Thank you
Luca