I am working with an app on AndroidStudio.
What code could I implement for when the back is called to leave the app to let me know if I want to leave it or not?
How to call a method (from another) that are in the same class in NodeJS?
class Usuario{
static foo(){
let a = this.bar();
}
bar(){
return true;
}
}
Usuario.foo();
I...
Someone knows how to change the welcome.balde.php that has the default laravel and change it to home.blade.php .
I tried configuring it in the reoutes.php but I still get the welcome, do you have to make a configuration to run?...
I have a concern that I would like to share with you in order to find a solution.
I am using React for the implementation of a project and I need in one of my forms that when performing the autofocus of one of its inputs which already has an...
I have a small problem with a query, I am trying to add the amounts that exist in my table detalle_ventas, what I want to do is add the quantities that have the same product_id and the same expiration date.
Example:
id_producto | fecha_venc...
BufferedReader br = new BufferedReader (new InputStreamReader (System.in));
String fechaN;
System.out.println("Introduce tu fecha de nacimiento en el siguiento formato dd/mm/aaaa");
try{
fechaN = br.readLine();...
I have the following query:
SELECT BELNR_ID
,BELPOS_ID
,DocDate
,AUFTRAG
,APLATZ_ID
,CONVERT(VARCHAR(10), ANFZEIT, 103) AS 'Fecha Inicio'
,RIGHT(ANFZEIT, 7) AS 'Hora Inicio'
,CONVERT(VARCHAR(10), ENDZEIT, 103) AS 'F...
Hello friend, I have a small PHP exercise in which I have to request the user's name and tell him how many words have his full name and that's it.
but I do not constrict it I have this following code:
$textosolicitado = print "var nombre=...
I have a form that when selecting a 'select' is sent automatically by AJAX, the call works well. Now when passing the variables of the form it says Notice: Undefined index:
In the index.php file I have
function enviar(theForm) {
$.a...
I have an html table and I want to fix the header but at the moment of doing it, I reduce the size of th and the entire table is unbalanced
thead,tbody tr{
display:table;
width:100%;
table-layout:fixed;
}
thead {
position: fixed;
...