Getting started with Web XS

What is Web XS? #

Web XS is an experimental PHP framework, designed to work on most if not all hosting platforms, built with speed in mind.

It is very easy to learn, very close to pure PHP but with built-in libraries for faster development, MVC architecture and more.
While we aim for it to be similar to Laravel, we also made it super intuitive and simplistic for simple web applications.

EmailEngine Class Example #

<?php
    $EmailEngine = new EmailEngine();
    $data = [
        "client_name" => "John Smith",
        "client_email" => "j.smith@business.com"
    ];
    $EmailData = [
        "subject" => "Subject here",
        "body" => $EmailEngine->FetchTemplate("client/account.create", $data);
    ];
    $SendEmail = $EmailEngine->Send($EmailData);
    if ($SendEmail) {
        echo "Sent email";
    } else {
        echo "Failed to send email";
    }
?> 

What are your feelings

Updated on December 11, 2025