Posted by Corey
2014-12-06

Thank you for you your time and effort in developing this wonderful resource.

My question:

on the edit contact page (tpl.contacts.detail.inc.php) i have added a separate ajax Facebook style comments log and i need to use the variable:

hm->Zb('rs:def:company');

as plain text to insert into a different html table as the following:

<input type="hidden" value="<?php echo $hm->Zb('os:rs:def:company'); ?>" name="company" id="company" />


but when i did the above i got this:

<input type="hidden" value="<input type="text" name="rs:def:company" value="Bob The Builder" size="50" maxlength="50"/>" name="company" id="company" />

i need a way to output something like this:

<input type="hidden" value="Precision Industries" name="company" id="company" />

Is there a easy way to solve this problem?