php Programming Glossary: distinction
How do I track file downloads http://stackoverflow.com/questions/146/how-do-i-track-file-downloads that can track the web server log itself and make that distinction. My hosting plan comes with webalizer which does this nicely...
Zend Framework: What are the differences between init() and preDispatch() functions in controller objects? http://stackoverflow.com/questions/2182759/zend-framework-what-are-the-differences-between-init-and-predispatch-functi stuff from the model and populating the view. So the distinction should now be clear If you want something to be executed before..
Is MVC + Service Layer common in zend or PHP? http://stackoverflow.com/questions/3744402/is-mvc-service-layer-common-in-zend-or-php Fat Model Thin Controller vs. Thin Model Fat Controller distinction. I recently heard that you can have something in between where..
Pros and Cons of Interface constants http://stackoverflow.com/questions/5350672/pros-and-cons-of-interface-constants problem. I see it as a dependency problem. It's a narrow distinction but a definite one. I see global problems as in global variables..
Smarty (and other tpl ngins): assign and assign_by_ref http://stackoverflow.com/questions/5794746/smarty-and-other-tpl-ngins-assign-and-assign-by-ref a pointer to some other data structure. In most cases the distinction between passing by reference and reference like behavior isn't..
How to prevent SQL injection with dynamic tablenames? http://stackoverflow.com/questions/5811834/how-to-prevent-sql-injection-with-dynamic-tablenames escape the backtick character. It's a small but crucial distinction. So I could insert a SQL injection in this I would just have..
Reference: Comparing PHP's print and echo http://stackoverflow.com/questions/7094118/reference-comparing-phps-print-and-echo counterpart. Syntax In procedural languages there is a distinction between statements and expressions. Syntactically echo e e .....
How do I add more than one row with Zend_Db? http://stackoverflow.com/questions/816910/how-do-i-add-more-than-one-row-with-zend-db needs to be INSERTed or UPDATEd when you call save . This distinction is encapsulated by the Row object so the Rowset doesn't know..
OutOfRangeException vs. OutOfBoundsException http://stackoverflow.com/questions/8193798/outofrangeexception-vs-outofboundsexception at compile time. As PHP isn't a compiled language the distinction between compile time and run time seems strange and thus I am..
|