This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$contact_number = "(123) 456-7890"; | |
$contact_number_link = preg_replace('/\D+/', '', $contact_number); | |
?> | |
<a href="tel://<?php $contact_number_link; ?>" target="_self"> | |
<span>CALL US 24/7<br><strong><?php $contact_number?></strong></span> | |
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
background: #20262E; | |
padding: 20px; | |
font-family: Helvetica; | |
font-size: 30px | |
} | |
div.column-3 { | |
width: 30%; | |
display: inline; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$servername = "YOUR_SERVER_NAME"; | |
$username = "YOUR_USERNAME"; | |
$password = "YOUR_PASSWORD"; | |
// Create connection | |
$conn = mysqli_connect($servername, $username, $password); | |
// Check connection | |
if (!$conn) { |