I have a page where I have about 90 elements that I need to display. Most of them are object properties (I use ORM so that these objects appear in my database tables). But the question is, should I code each of these 90 outputs, applying functions to each (in my case, to htmlspecialchars)? Wouldn't that add a bit of overhead (calling one function 90 times)?
EDIT: term "output coding" ... hehe
source
share