I have a form where various user information is registered, including phone numbers and, after being registered, you can view the registration by opening a form that is the same as the previous one with disable fields that are the same as the fields filled in at the time of registration
I would like to turn this number into a link so that the user can call the form number if it is on a mobile device and I thought it would just be me to href
, but since I am getting this information from the bank and playing text box, I do not know how to turn into link.
<div class="form-group col-md-6">
<label for="telefone">Telefone:*</label>
<div class="input-group phone">
<span class="input-group-addon"><i class="glyphicon glyphicon-earphone"></i></span><input required type="phone" class="form-control" id="telefone" name="telefone" placeholder="Digite o seu telefone:" value="<?=$row['telefone'];?>" disabled>
</div>
</div>
Iwastryingthesamehrefanditlookedlikethis:
Can anyone give me an idea how to do this?