Is smarty templating system really needed for creating a browser-based game?
Do I need anything else than SQL, PHP, and JS knowledge? \
Note: I also know HTML/CSS so I'd like to work on the game template only after the Database and Coding is done...
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Smarty is not needed in the sense that you cannot implement a browser-game without it. In my opinion, a template engine has three main advantages:
Note that Smarty is not the only engine that provides these advantages, so it is not needed even if you decide to use a template engine. If you are experienced with MVC software design, don't have any non-programmers for your view files, and already got caching functionality, then don't use Smarty. It will just make your code (a little) slower, and, more important, it will restrict your flexibility by taking away the option to use native PHP in your view files. |
|||
|
|