Well, I'm asking because I do not know, but I'm trying ...
Doubt
http://www.meusite.com.br/busca.html?nome=louvor+a+Deus
Where: ?nome=louvor+a+Deus
You should remove or better replace with% with spaces
? = +
I hav...
I would like to know if there is any way to know how much my PHP application is consuming from memory.
For example: I want to know at the end of the script how much PHP spent in the process of running a particular script.
Is there a functi...
I have a tab problem in JTextPane and I am trying to reduce the default value assigned to it but it is giving an error because I have to inherit two classes (one for JFrame and the other for overwriting the tab functions ) but Java...
In a class that has a static variable, it exists throughout the application. Is the linked object collected at some point?
Example:
public class Exemplo {
private static List<int> lista = new List<int>();
}
What I want is to know the name given to those tips that are appearing to assist in using a system when we first enter it.
For example, I log in to the system and a balloon appears as if it were a modal in a certain location with a hint and a...
Making a security class for PHP I noticed the existence of two similar constants, such as:
FILTER_SANITIZE_NUMBER_INT and FILTER_VALIDATE_INT .
The pattern follows in email , string and other validations. What is the differ...
Since I started learning C ++ I've always done something like:
class.h
#ifndef CLASSE_H
#define CLASSE_H
class OutraClasse;
class Classe
{
public:
Classe();
void foo(OutraClasse *bar);
};
#endif
And here I declare met...
Well, I realized that in Lua, it is not possible to use letters with an accent.
print("á")
Returns an invalid character.
Is there any way to avoid this?