Why PHPue Will Make You Question Everything

The framework that delivers everything modern web development promises, but actually delivers.

Zero Build Process

Write code. Save file. Refresh browser. Done. No webpack, no node_modules/, no configuration mess.

$ php -S localhost:8000
🎯 Server running!
🔧

Vue-like Directives

Familiar syntax with p-if and p-for. Write less code, get more done.

<div p-if="$user">Welcome!</div>
<li p-for="$item in $items">
  {{ $item['name'] }}
</li>
🚀

Actual Server-Side Rendering

Not the "SSR" that still needs client JavaScript. Real HTML from the server. Zero JavaScript required.

✅ SEO-friendly
✅ Instant loading
✅ No hydration
📜

Component Scripts

<cscript> for client-side JavaScript with module support. Add interactivity when you need it.

<cscript>
let fruit = {{$banana}}
</cscript>
💾

Database in Components

Run SQL queries directly in your templates. No API layers, no controllers, no nonsense.

 <?php
  $result = $db->getUser(2);
 ?>
<div>
  {{ $result }}
</div>
🚢

Deploy Anywhere

No complex deployment process. Upload files to any £5 hosting. It just works.

$ git push
✅ Deployed!

PHPue Directives - Simple & Clean

p-if

Conditional rendering made simple

<div p-if="$user['isAdmin']">
  Admin Dashboard
</div>

p-for

Clean loops without PHP tags

<li p-for="$user in $users">
  {{ $user['name'] }}
</li>

p-model
(Privacy-Conscious Design)

Respects user privacy with intentional form handling

PHPue respects user privacy by avoiding automatic keystroke tracking. Build explicit form submissions that require clear user intent.

Pure PHP - When You Need Full Control

Always have the full power of PHP available when you need it

Traditional PHP IF

Full control with classic syntax

<?php if($user->isAdmin): ?>
<div>
  Admin Dashboard
</div>
<?php endif; ?>

Traditional PHP FOREACH

Complete looping flexibility

<?php foreach ($items as $item): ?>
<li>
  <?= htmlspecialchars($item) ?>
</li>
<?php endforeach; ?>

The Proof is in the Code

Traditional Frameworks

// 50+ configuration files
// package.json with 100+ deps
// Build process required
// API layers needed
// Hydration issues
// ❌ Complex & Fragile

PHPue

// 2 files
// Zero dependencies
// No build process
// Direct database access
// Real SSR
// ✅ Simple & Robust

Ready to Experience Web Development Without the Pain?

Join the revolution and build applications faster than you ever thought possible.

No installation required. Start building in minutes.