Let's Discuss Your Project

Fill the form and we'll get back within 24h

Contact Info

WhatsApp Chat

Call Now

LinkedIn

contact@itconsultant.com

// File: contact-submit.php require_once 'config/database.php'; if($_SERVER['REQUEST_METHOD']=='POST'){ $stmt = $pdo->prepare("INSERT INTO inquiries (name, email, phone, service_requested, message) VALUES (?,?,?,?,?)"); $stmt->execute([$_POST['name'], $_POST['email'], $_POST['phone'], $_POST['service']??'', $_POST['message']]); header("Location: contact.php?success=1"); } ?>