a new browser-based mysql admin is on the block. looks like phpmyadmin without the set-up configuration and case of the uglies.
The
Palm
Civet
Posts tagged php
sql buddy
let's make the web faster
yes please. a collection of articles from google on how to optimize your site for faster performance.
{via}
simple php templating system
when a request comes along to build a static website with multiple pages and no cms, i find php includes to be the simplest solution. an example page can look something like this =>
<?php include $_SERVER['DOCUMENT_ROOT'] . '/_forms/header.php' ?>
<?php include $_SERVER['DOCUMENT_ROOT'] . '/_forms/nav.php' ?>
<div id="content">
...
</div>
<div id="sidebar">
...
</div>
<?php include $_SERVER['DOCUMENT_ROOT'] . '/_forms/footer.php' ?>
that way you can nest reusable chunks of code into a folder of template forms.
perch cms
drew and rachel from edge of my seat just released a new, lightweight cms called perch. this looks like a really enticing option for smaller sites as it seems to fit in almost seamlessly to a standard template-building development workflow.
compiling and sharing code, ideas, and tools for making better websites and applications.
by justin talbott {email me}