1
vote
How to implement URL pattern interpreter as used by Django and RoR in PHP
have a look at the cakephp implementation as an example:
https://trac.cakephp.org/browser/tr …
1
vote
Suggestions for a Web application for a group project.
Have a look a Paul Graham's list of "Startup Ideas We'd Like to Fund" - lots more ideas and the CMS has been done to death.
http:/ …
0
votes
What is the best way to insert HTML via PHP ?
Do NOT use smarty - PHP is a templating system in itself. Consider using this syntax:
<?php if($a):?>
[SOME MARKUP]
<?php else: ?>
[SOME OTHER MARKUP]
<? endif; ?> …
