I have a set of rules that are taking up a lot of space in my code:
if ($ni == '1' && $status2 == 'Aberto' ){
$url_edit = "<a href='edit_os.php?id1=$id1'>";
}elseif ($ni == '1' && $status2 == 'Em Andamento'){
$url_...
How do I add a column in the database of my android java application without losing the data from the current database?
My code:
public DataBaseHandler(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
// Creatin...
I was reading a subject once quoted PFS and then I went to search, Wikipedia is weak on information about this, what is it? Is it like doing it? Please, I am a layman and I like examples, thank you in advance.
How does the search for information through the sender object work, and in what situations can I use it, with what types of events?
This is to avoid redundancy of events. Where can I explore these possibilities?
For example :
several buttons fro...
Good morning, people.
I need to create some tasks on my system that run automatically (such as a Cron Job).
Example: Every day the system sends an email to the customers of the system with the amount of their charges, and the ones that are cl...
I have a system in which it does the digital certificate store, I need some information besides the file itself, one of this information is the expiration date of the certificate.
The question is, how to read this file so that I can pick up t...
When a method in a web API detects that there was a failure in validating the data of an entity to be added or updated is there any HTTP code that is standard to be sent? For now I am using the 400 (bad request) code, but I do not know if there...