Products

TrueTimer Logo TrueTimer

Keep track of billable time and switch between clients quickly with a simple reliable app that lets you add labels and notes with ease.




Learn More
TrueTimer graphic

TrueMail Logo

Email marketing you control. Create campaigns, manage contacts, build emails with drag-and-drop tools, and send reliably through Amazon SES — all from within your own website software.




Learn More
TrueMail dashboard

TrueAdmin Logo

Build powerful admin software on a modern PHP framework with enterprise-grade security, modular architecture, role-based access control, and a customizable dashboard.




Learn More
TrueAdmin dashboard

TrueCMS Logo TrueCMS

Build the site static first. Add TrueCMS whenever a client wants to edit it themselves — a visual page editor with automatic revision history, so nothing is ever truly lost.




Learn More
TrueCMS visual page editor

TrueData Logo TrueData

Define a table and its fields with no SQL, then hand your client a simple form to add, edit, and remove records that show up on the site — without hand-coding a screen for every list.




Learn More
TrueData simple record form
For developers

TrueFramework

The small, fast PHP framework that makes building websites faster and simpler that other PHP Frameworks. Routing, views, css/js management, optional controllers, auth, SEO, queue, scheduler, http client, forms, email, and more.




Read the Docs
app/routes.php
// One route. One handler. One template.
$App->router->get('/hello/:name', function($request) use ($App) {
    $App->view->render('hello.phtml', [
        'name' => $request->route->name,
    ]);
});