Posts by Rafael Pinal • 23 points
5 posts
-
0
votes2
answers1320
viewsA: Limit characters and display the amount of characters
Hello, it’s quite simple to do that $(document).ready(function(){ $('#iddocampo').keyup(function(){// evento jquery quando o cara digita var campo = $("#iddocampo").val(); var qtde = campo.length;//…
-
0
votes1
answer42
viewsA: Login without selecting level
Hello, you are using 2 equal users with different profiles? Follow how I log into my systems: Table CREATE TABLE USUARIO -- CADASTRO: SU ( ID INT PRIMARY KEY AUTO_INCREMENT, EMAIL VARCHAR(100),…
-
1
votes1
answer78
viewsQ: How to avoid dual Insert with different mysql Primary key
My problem is critical in the system for some reason it inserts 2 times, I have tried to simulate the problem giving several clicks but did not duplicate. In my php code I validate if the record…
-
0
votes2
answers2823
viewsA: How to send notification without opening the application
Hello, I was having the same problem and after a long time searching for the answer and testing I managed using Alarmmanager and Broadcastreceiver, what I needed: I have a web system where someone…
androidanswered Rafael Pinal 23 -
1
votes2
answers9432
viewsA: Creating app that runs in the background
I was having the same problem and after a long time looking for the answer and testing I managed using AlarmManager and BroadcastReceiver, what I needed: I have a web system where someone registers…
androidanswered Rafael Pinal 23