In the vicidial.php, for the agents I just want print the phone numbers and I don't want them editable. the following code could be correct?
This is the original:
- Code: Select all
<tr>
<td align=right><font class="body_text"> Phone: </td>
<td align=left><font class="body_text"><input type=text size=11 name=phone_number maxlength=12 class="cust_form" value=""> DialCode: <input type=text size=4 name=phone_code maxlength=10 class="cust_form" value=""> Alt. Phone: <input type=text size=11 name=alt_phone maxlength=12 class="cust_form" value=""></td>
</tr>
This could be the phone numbers not editables
- Code: Select all
<tr>
<td align=right><font class="body_text"> Phone: </td>
<td align=left><font class="body_text"><input type=hidden size=11 name=phone_number maxlength=12 class="cust_form" value=""> <?php echo "$phone_number"; ?> DialCode: <input type=text size=4 name=phone_code maxlength=10 class="cust_form" value=""> Alt. Phone: <input type=hidden size=11 name=alt_phone maxlength=12 class="cust_form" value=""><?php echo "alt_phone"; ?></td>
</tr>
Please help