What the heck is a domain object?
I would be reading a tutorial and all of sudden the author mentions “domain object”. What the heck is a domain object? “Domain objects form the backbone of any application. They capture the core data … Read more
Programming
I would be reading a tutorial and all of sudden the author mentions “domain object”. What the heck is a domain object? “Domain objects form the backbone of any application. They capture the core data … Read more
How does the include (include_once) and require (require_once) functions work? Everytime I step away from PHP, I seem to forget how the include and require work with respect to absolute and relative links. PHP includes the “include/require … Read more
What is the real difference between $this and self:: ? A simple Google search will return several sites that show a definition such as this one: “Use $this to refer to the current object. Use … Read more
I have been asked several times to identify the technologies that a particular web site is using (from Operating System , Webserver , Javascript Framework and so on… Sometime it it very straighforward other times … Read more
I was always under the impression that varchar maximun length was 255. Values in VARCHAR columns are variable-length strings. The length can be specified as a value from 0 to 255 before MySQL 5.0.3, and … Read more