Tagged Questions

4
votes
4answers
196 views

how to separate sql from php code

I have a class that helps me to handle users. For example: $user = new User("login","passw"); $name = $user->getName(); $surname = $user->getSurname(); $table = $user->showStats(); All ...
2
votes
1answer
42 views

PHP: Where should I store the text for info & warning messages

I have a question concerning the design of my project's Code. In most cases, it is important to separate content from code (HTML mixed with PHP in bigger apps=No good idea, etc.) but how should I ...
2
votes
1answer
918 views

Code Separation Paradox: Create HTML Tree from Multi-Dimensional Array AND Keep the HTML Outside of the Recursive Function

This working code seems to be the typical solution to this problem. It takes a multi-dimensional array that holds categories and their subcategories (with no implied limitation on how many levels ...