I have a table in mysql database name contact_tbl that has a phone number field. inside this database I insert a value like this
<a href="tel:<?php echo $social->phone_number; ?>" title="<?php echo $social->phone_number; ?>"><i class="fas fa-phone fa-rotate-90"></i> <?php echo $social->phone_number; ?></a>
this will create a link for a phone number that I will be echoing on the front end of the website. I did this because when someday I need to change the phone number it will be done by changing it in the database then all of the pages that has a phone number on the website will change as well.
The problem is that when I try to query and echo this on website it doesn't do anything. Do you know why?