<?php STPL::SetBase(__DIR__ . '/../base.php'); ?> <?php STPL::Partials([__DIR__ . '/../partials/top.php', __DIR__ . '/../partials/bottom.php']); ?> <?php STPL::SectionContent('content', function ($user) { ?> <div>Hello there, <b><?php echo "{$user['firstName']} {$user['lastName']}"; ?></div></b> <?php }); ?>
info at phpclasses dot org