Hello everyone!
I have a code that is for a phone number entry. The code works fine however, it will automatically fill "0" in the spot for the phone number if it is null. This is throwing our system off for numbers. If you can see what may be causing this, I would appreciate it.
<div class="row">
<div class="row-left">
<?php echo $form->labelEx($info,'student_mobile_no'); ?>
<?php echo $form->textField($info,'student_mobile_no',array('size'=>12,'maxlength'=>12)); ?><span class="status"> </span><br/><br/><b style="color:red;">
<?php echo $form->error($info,'student_mobile_no'); ?></b>
</div>