Eco Sarasdescription: Lorem, ipsum dolor sit amet consectetur adipisicing elit. Eaque natus ducimus in.IOT based cold storage command and control dashboard
// Phone number used for WhatsApp deep-link. From settings.phone (digits only).
$ctaPhone = '';
if (isset($APP_SETTINGS) && !empty($APP_SETTINGS['phone'])) {
$ctaPhone = preg_replace('/[^0-9]/', '', (string) $APP_SETTINGS['phone']);
} elseif (function_exists('mysqli_query') && isset($con)) {
$r = @$con->query("SELECT phone FROM settings WHERE id = 1");
if ($r && ($s = $r->fetch_assoc())) $ctaPhone = preg_replace('/[^0-9]/', '', (string) $s['phone']);
}
if ($ctaPhone === '') $ctaPhone = '919499699693'; // fallback from VDS deck
$waUrl = 'https://wa.me/' . $ctaPhone . '?text=' . urlencode("Hi Voldebug, I'd like to know more about your services.");
?>