In PHP, we can suppress errors by using arroba before certain expressions.
This can be seen at: #
I've seen some hangouts on PHP and staff were criticizing the use of @ in PHP, for the thesis that an error should be han...
Where JavaScript should be placed in an HTML document: in element <head> or <body> ? At the beginning or the end of each? Is there any performance difference or any other related to this?
Today, it is common for compilers of programming languages to allow the code file of their programs to accept code with Unicode characters.
This is useful, especially for those who use Portuguese and other languages that run away from ASCII t...
I saw this term being used several times, many people and companies want their codes to be "clean" ... I also saw the book Clean Code Practical Skills of Agile Software .
But I wanted to know what defines a code to be clean or not? What poin...
When you read about software architecture on the web, sometimes the term spaghetti code is used, referring to something that should be avoided. >
But I never quite understood what "spaghetti code" means.
Recently I discovered the famous (or not so famous) Recursive Functions and I found the concept very interesting. But during my reading I had some doubts about the use of such.
1st What is the advantage of using Recursive Function ?
For I...
I see each using in a way, I even vario the form in a few moments and all work, but which one is right? Does it depend on the HTML version or the browser ?
Context
When I do a SQL and I want a specific alias I should enclose double-quotes ".
SELECT A.ds_nome_pessoa AS "Pessoa.nome" ...
When I want to make a where in of a field varchar the values must be in single quotation ma...
I'd like to know what the actual difference is between String (upper case s) and string (lowercase s).
Apparently the two have the same goals, but which one is "better" to use?