Posts by Vagner Araujo • 153 points
7 posts
-
0
votes2
answers3050
viewsQ: Is it possible to have a ternary without the Else block?
There is the possibility of creating a simpler if ternary, I say without the code of the Else block? how would it look? guy : if($total < 10){ $total_gerente = 10; } Because from what I know the…
-
7
votes1
answer1441
viewsQ: Unique identifier of a Smartphone
I am developing a system and need to capture a unique identifier of the Smartphone. In this case, the person would access the site by Smartphone and the site will capture some unique identifier of…
-
0
votes2
answers4741
viewsA: HTML + PHP contact form
$to = "[email protected]"; $from = "[email protected]"; $subject = "subject"; $message = "mensagem"; $headers = "From: $from"; $ok = @mail($to, $subject, $message, $headers, "-f " .…
-
-1
votes2
answers320
viewsQ: Push Notification IONIC
I’m doing a Mobile project in Angular/Cordova/IONIC, but I’m in the phase of push notification, since he’s a project apart. I tested several tutorials on the web, even the own IONIC , but it doesn’t…
-
2
votes2
answers2629
viewsA: How to login with php and Session on Ionic?
Do with Token dude, I’ve tried with Ssion, cookies , but token is the most recommended, keeping the status logged in the app, if that’s what tabm want; Use this link with support: IONIC / TOKEN…
-
3
votes1
answer1815
viewsQ: How to assemble GPS bar code numbers?
How to assemble GPS bar code numbers? Any suggestions? (GPS - Social Security Guide)
gpsasked Vagner Araujo 153 -
1
votes0
answers484
viewsQ: Is there any way to avoid blocking Whatsapp?
I recently implemented on a website a trigger to send Whatsapp messages via PHP, but in times the sender user blocks(Whatsapp), is there any method to prevent this lock? Trick, or something?.…