Tricornio Tech operates in the IT Services and Consulting sector. Their business model is service-based, meaning they sell time and expertise, not "investment packages" or "get-rich-quick" schemes.

For an enquiry script to be reliable, it must handle specific security concerns:

Verdict: Legitimate Business

Tricornio Tech is not a scam. It appears to be a genuine software development and IT services company. Unlike typical "red flag" websites (which often have anonymous owners and promise unrealistic returns), Tricornio Tech presents itself as a standard B2B (Business-to-Business) service provider.


Once the request hits enquiry.php, the server executes the code logic. Standard operations for a file like this include:

  • Email Composition: The script formats the sanitized data into a readable format (usually HTML or Plain Text) to be sent to the company's internal email address (e.g., info@tricorniotech.com).
  • When handling enquiries, always remember:

    Here’s a simple yet secure example of what enquiry.php might look like:

    <?php
    if ($_SERVER["REQUEST_METHOD"] == "POST")  empty($message)) 
        die("All fields are required.");
    if (!filter_var($email, FILTER_VALIDATE_EMAIL)) 
        die("Invalid email format.");
    // Send email
    $to = "contact@tricorniotech.com";
    $subject = "New enquiry from $name";
    $body = "Name: $name\nEmail: $email\n\nMessage:\n$message";
    $headers = "From: $email";
    if (mail($to, $subject, $body, $headers)) 
        echo "Thank you! We’ll get back to you soon.";
     else 
        echo "Sorry, something went wrong. Please try again later.";
    

    else // Not a POST request header("Location: contact.html"); exit(); ?>