0
votes
3answers
46 views
PHP: fill an array with numbers
If i have a variable $num = 50 how can i put numbers 1-50 into an array?
(50 is an example.. i wont know how many questions)
0
votes
1answer
21 views
Javascript HTTP Request Queue within object variable - initialization doesn’t work
Hi folks,
I got the following Request Queue implementation from this blog:
http://dsgdev.wordpress.com/2006/10/28/building-a-javascript-http-request-queue/
and want to wrap it …
0
votes
4answers
89 views
Multiple left-hand assignment with JavaScript
var var1 = 1,
var2 = 1,
var3 = 1;
This is equivalent to this:
var var1 = var2 = var3 = 1;
I'm fairly certain this is the order the variables are defined: var3, var2, v …
1
vote
4answers
78 views
Variables set during $.getJSON function only accessible within function
This may be more of a scoping question. I'm trying to set a JSON object within a $.getJSON function, but I need to be able to use that object outside of the callback.
var jsonIssu …
2
votes
3answers
66 views
C-style Variable initialization in PHP
Is there such a thing as local, private, static and public variables in PHP? If so, can you give samples of each and how their scope is demonstrated inside and outside the class an …
0
votes
6answers
114 views
How to generate and transmit a JavaScript variable from MVC Controller?
I'm trying to fill a JSON object with a list of items from the database when the page first loads. This list of items comes from the database. Right now, I've strongly typed the Vi …
1
vote
2answers
118 views
How can I use a variable’s value as a Perl variable name?
Sorry about all these silly questions, I've been thrust into Perl programming and I'm finding it really hard to think like a Perl programmer.
Silly question for today:
I load a pi …
0
votes
4answers
70 views
Which command in VBA can count the number of characters in a string variable?
Let's say I have this variable:
word = "habit"
which command in VBA will allow me to count how many characters are there in this variable (in my case it's 5).
Important: the va …
2
votes
5answers
109 views
Calling a JavaScript function named in a variable
I have a JavaScript variable which contains the name of a JavaScript function. This function exists on the page by having been loaded in and placed using $.ajax, etc.
Can anyone t …
0
votes
3answers
39 views
PHP preg_replace text variable
I want to echo a string with the variable inside including the ($) like so:
echo "$string";
I dont want it to echo the variable for string, I want it to echo '$string' itself, a …
0
votes
7answers
143 views
is static variable in c re-allocated everytime calling a function?
Suppose I have a static variable declared inside a function in c.
If I call that function multiple times, does the static variable get re-allocated in memory every time the functi …
1
vote
4answers
97 views
C Programming: Forward variable argument list.
Hi, I'm trying to write a function that accepts a variable number of parameters like printf, does some stuff, then passes the variable list to printf. I'm not sure how to do this, …
0
votes
1answer
27 views
IReport Case in Variable
I write this code in one variable in the IReport :
$F{wbsWbkRef.wbkStdRef.stdBlRtntp.blCode} != null ?
ReportUtil.getFirstEntity($P{JPA_ENTITY_MANAGER},
"SELECT "+
"CASE WHEN …
0
votes
1answer
25 views
Codeigniter: Variables/Config Items within Language Files
I have a language file with a long list of strings for my view files.
My question is how to pass a variable or a config item to a language file?
<?php $lang['error_activation_k …
0
votes
3answers
70 views
C# Passing value of a list element to update local variable
I have a few local variables and I want to divide them all divide them all by the same number.
decimal a = 0;
decimal b = 0;
decimal c = 0;
...
decimal n = 0;
decimal divisor = 0 …
