Posts by Ivónio • 70 points
5 posts
-
1
votes1
answer27
viewsQ: Chart value only appears when page resolution is changed
I have 2 Javascript charts that are receiving values through a PHP file. However these values only appear on the chart when the resolution of the web page for some reason is changed. This is the…
javascriptasked Ivónio 70 -
0
votes1
answer26
viewsQ: Value substitution
I am receiving an array in the variable "myObj" ([00, 12, 45, 34, 23, 34, 34, 34, 05, 42, 21, 11, 31]). And I needed to put this value in the series, that is, replace the array that is hardcoded…
javascriptasked Ivónio 70 -
0
votes1
answer732
viewsA: How to remove a user due to inactivity?
Your code will destroy the session after 15 minutes. Although the difference isn’t much, I’d do something like this: <?php session_start(); // 10 minutos em segundos $inactive = 600;…
-
4
votes1
answer93
viewsA: How to include several Radiobutton?
I assume you’re talking about Apps for android... You can for example have the possible questions and answers in arrays, when the person answering presses a "next" button, which updates the values…
-
0
votes2
answers1079
viewsA: Permission for android app
Assuming you haven’t created permissions yet, you should go to AndroidMainfest.xml and set the permissions you want: <manifest xmlns:android="http://schemas.android.com/apk/res/android"…