Server side events
We allow you to write code on the server that executes whenever something happens in the client.
Your user presses a button in their browser, your code runs on the server.
Seperation of UI from logic
From now on, you'll really be able to separate UI from logic.
Every page will have a ui template and a class implementation. As an added bonus,
all templates are fully localizable without disturbing the logic in the implementation.
Safe, easy data access
We provide PDO based connectors to
mysql and sqlite
databases. Making it simple to use prepared statements and prevent any possible attack
vector for sql injection from ever existing in your code.
You can ofcourse still opt to use your favorite orm tools
Rich collection of built-in controls
- Tables
- Repeaters
- Images
- Textboxes
- Buttons
- Carousels
- TabContainers
And it's all themable.
Speedy
Most speed optimization is made to cut development time. Because it's cheaper to add
a server than to add a developer, a simple fact of life that is not likely to ever
change. But at runtime the framework is no slouch either. The template parser is built
on top of DOMDocument which is built on
libxml and it is fast.
Support for your favorites
Do you like using Markdown?
Smarty? PHPTAL?
you're in luck! red.web already supports Markdown and we'll be adding PHPTAL and
Smarty support over the next few weeks.