Tagged Questions
1
vote
2answers
90 views
JavaScript - Global Variable not Changing
I am trying to store a file list in a global variable, so that individual files can be accessed by links. I have this HTML code:
<input type="file" id="input" multiple ...
0
votes
3answers
318 views
Increment PHP variable in Javascript loop
I am trying to make a Graph (via Google Charts) that displays the user activity on my server for the last 24 hours. The data for the user activity is fetched every 15 minutes (via cron) and stored on ...
3
votes
2answers
95 views
Static Redefine after reboot of embedded System C
I work on an embedded System - not a windows system.
I declare:
static uint_8 i = 0;
So i is defined 0 at start moment.
The question: After a reset is i redefined as 0 or does it get a junk ...
1
vote
1answer
286 views
Reset variable new line awk
I really didn't want to have to waste people's time and ask this, but after 2 hours and running out of my own time I've decided to ask..
Basically I have a file in the format:
word: other words; ...
1
vote
4answers
148 views
c# Quick way to undef all parameters
I have a C# winform app which is doing a lot of calculation. there is a "run" button to trigger the process. I would like to be able to "re-trigger or re-run or re-submit" the information without ...
0
votes
2answers
85 views
resetting variables in php to display in javascript
I'm trying to get some values off a DB and then putting those values into javascript variables. I managed to do just that, the problem I'm having is when the values in the DB change the values of the ...
0
votes
6answers
640 views
variables retaining values after app close
My app is retaining all of the variable values when it closes and this is effecting how it runs when reopened. Is there any way to reset them all upon app close? or is there a way to clean the app ...
0
votes
3answers
806 views
static variable is being reset for unknown reason
I have a class called 'DataReference' which has a number of static variables which are accessed by various classes throughout program execution.
I have one variable 'public static int particlePercent ...
5
votes
4answers
2k views
jQuery detect keystrokes and set variables accordingly
I have created a rudimentary EasterEgg within my code to activate when the following keystrokes are made (not simultaneously) Enter + c + o + l + o + r + s with the following code:
isEnter = 0; isC = ...
0
votes
3answers
5k views
Clear all script-set variables easily (Javascript/jQuery)
I'm trying to find a simple way to reset all current variables in the DOM. My app has a 'locked' state, but currently, when locked, the last set of information is still visible in the DOM if you look ...
0
votes
2answers
422 views
Session start
In header.php I have:
<?php
if(!isset($_SESSION))
{
session_start();
}
?>
and further down I have:
$_SESSION[theme] = $_GET[theme];
Basicly there is a drop down box where the user selects ...
