Search Results

3
votes

Which PHP CMS has the best architecture?

I have no idea, I don't do PHP any more... But I can answer you in the negative. There's one CMS, no matter how solid it may be, that is totally impenetrable in its internals: Typo3. I've t …
1
vote

Seriously, should I write bad PHP code?

If you're that worried about every bit on efficiency, then why on earth are you using a scripting language? You should be programming in a much faster language (insert your favorite compiled langua …
1
vote

Is there a PHP function to call all variables from a form?

I think you should start out with a list of all variables that you expect, and loop only over those. If you don't, hackers can inject any variable name... In fact, you're reemplementing th …