try this maybe help you
Dear sir,
try this and I hope this will help you.
in client can not edit just view so should be like this:
<tr>
<th width="20%">Charges:</th>
<td>
<input type="hidden" name="charges" value="<?=$charges?>"><?=$charges?>
</td>
</tr>
and in admin you can put the code when admin/staff edit the ticket so it's should be like this:
<tr>
<th width="20%">charges:</th>
<td>
<input type="text" name="charges" size="25" value="<?=$info?>">
</td>
</tr>
and don't forget to type the following code in /include/staff/editticket.inc.php
'name' =>$ticket->getName(),
'charges' =>$ticket->getCharges(),/// this line to get the charges value from database
I hope this help you and if you need any further query please let us know :)
have a nice day...