spudly.shuoink.com

the best way to predict the future is to implement it

Entries Comments


Category: PHP

PHP Error Log Parser

17 February, 2008 (08:15) | PHP | 4 comments

So about a month ago I got pretty tired of looking at this:
[17-Feb-2008 07:33:52] PHP Parse error: syntax error, unexpected T_FUNCTION, expecting ‘(’ in C:\www\forms\validate.php on line 10
[17-Feb-2008 07:33:54] PHP Parse error: syntax error, unexpected T_FUNCTION, expecting ‘(’ in C:\www\forms\validate.php on line 10
[17-Feb-2008 07:34:08] PHP Fatal error: Call to undefined function send_email() [...]

PHP Template Engine

9 February, 2008 (09:05) | PHP | 3 comments

I’ve been looking for a good PHP template engine for quite a while now, but I haven’t been able to find one that I feel good about. In my bout of frustration, I made my own. Mine, however, is based on normal php tags, rather than creating my own new template language. Thus, you can [...]