The dynamic-variables tag has no wiki summary.
0
votes
3answers
45 views
Dynamic variable echo inside $_POST['']
I have a form that has radio inputs that have a dynamically generated name like below:
<input type="number" name="<?php echo date("Y")-4 ?>brand%gross" placeholder="Gross Sales % for ...
1
vote
1answer
33 views
Soap UI Post Payload Groovy variable substitution
Soap UI (Free version)
I have a test case that is a POST that accepts XML as the payload. I wrote a groovy script in the test case that will calculate the readingDate field.
Groovy Script:
import ...
3
votes
2answers
61 views
Struts2 dynamic variables
I'm trying to create a dynamic variable in struts 2 using set tag
<s:set var="myNum" value="numConst" />
<s:set var="number" value="%{getText('@xxx.CommonConstant@'+#myNum)}" />
...
0
votes
1answer
67 views
Save array of inputs with different names to database
This is a wordpress plugin.
So I have a hidden input checkbox that gets created when a new item is created. These items can be turned on/off using sliding toggles (the checkboxes). After testing by ...
1
vote
2answers
99 views
Change variable value based on elemental position using :nth-child
I need to be able to have a variable that identifies that position of an li, using .index() and then assigns a value to it depending on the variable number for each individual li.
This may sound a ...
0
votes
1answer
87 views
Parse Control name to Variable name
I have a var called as "Cheat_Enabled":
Dim Cheat_Enabled As Boolean
And a Checkbox called as "CheckBox_Cheat" with the tag "Cheat"
Now I want to do a dynamic method to change the value of the ...
1
vote
1answer
157 views
Velocity Template Language dynamic variable
I read all the manual/guide (http://velocity.apache.org/engine/devel/user-guide.html) and I don’t see how can acces to dynamic variable:
The Scenario:
> #set ($u14 = “MARCOS SANCHEZ”)
> #set ...
0
votes
1answer
45 views
Android - Changing variables in a formula dynamically
I'm stuck at a point that seems simple and likely there's an easy way to deal with it, but I need help anyway.
I need to evaluate a formula using a set of constants, that should be chosen dynamically ...
2
votes
2answers
148 views
Elegant Solution For Storing XML Data
i have got my application to read in some values from my xml document however i am unsure of how I'm going to store them as i have in total 6 pieces of information for each element in the file at the ...
0
votes
2answers
105 views
Manipulating variables in an activity with a method in another class
I am working on a game and have run into some issues. My architecture is something like this:
class GameView is used to draw bitmaps on my surfaces
class GameLoopThread is used to implement my game ...
0
votes
3answers
93 views
Passing Android Acceleromter values from MainActivity to My GameView class
I am working on a game involving measuring accelerometer values and manipulating my character's position based on those values. I am only working with the X axis. I initiate my accelerometer manager ...
0
votes
3answers
94 views
How to use dynamic vars in VBNET
How I can take the text of the button to use it like a resource name?
My try:
Public Sub LlamadaButton(ByVal sender As Object, ByVal e As System.EventArgs)
Dim ButtonN As Button = CType(sender, ...
-1
votes
4answers
116 views
how to create and concatenate dynamic variables in PHP?
In this php code, during a while loop, I was hoping to use later 3 variables called $menu_1, $menu_2, and $menu_3. Is this possible in PHP?
while($parent_row = mysql_fetch_array($parent_result)){
...
0
votes
3answers
162 views
How to repeatedly invoke a SAS macro where the second param is the first with - and . removed?
I have a macro that needs two parameters -- a string that can contain dashes and periods, and a cleaned-up version of the same string where any dashes and periods are replaced by underscores.
The ...
1
vote
3answers
140 views
Dictionary use instead of dynamic variable names in Python
I have a long text file having truck configurations. In each line some properties of a truck is listed as a string. Each property has its own fixed width space in the string, such as:
2 chracters = ...
1
vote
1answer
74 views
Display contents of array based on dynamic value
I am trying to optimize my shell script a bit and want to be able to display the contents of an array based on user input that is stored in a variable:
Here is an excerpt from my script
logArr( ...
2
votes
4answers
118 views
Dynamically add variables in C++
I'm working on a project for school. This is the case:
You should be able to input weights for n number of students. Calculate average weight of students and output how many students are ...
2
votes
1answer
110 views
Perl variable value as another variable name
I have a perl script (abc.pl) and 2 config files (one var.pl and one config.txt)
Now
in var.pl
$admin_userid = "admin";
$guest_userid = "guest";
in config.txt - this has the value of user - can ...
1
vote
3answers
83 views
Dynamic javascript variables
I would like to dynamically generate an integer (in the below case either 100 or 500) and use it to access separate arrays. In a later step (not part of the code below) I would also like to access ...
5
votes
3answers
688 views
Can I create dynamic object names in JavaScript? [duplicate]
Possible Duplicate:
javascript - dynamic variables
Dynamic Javascript variable names
I need to create a number of objects on a page and want to name them sequentially. Is there a way to ...
0
votes
2answers
103 views
Dynamic variable different for every Wordpress post: how to declare in loop?
I need a wordpress loop that for every post checks a meta numeric variable previously assigned to each of the taxonomies of the post and returns the sum of these meta variables.
To do so, I think I ...
1
vote
2answers
341 views
Javascript: Server sided dynamic variable names
How would I create dynamic variable names in NodeJS? Some examples say to store in the window variable, but I was assuming that is client-side Javascript. Correct me if I'm wrong.
0
votes
1answer
1k views
How do you insert the same random variable into multiple soapui testcase requests?
I may be going about this in the completely wrong way, but how do I pass a dynamic variable to a bunch of requests within the same testsuite in SoapUI?
My first test step is a Groovy script. I need ...
4
votes
1answer
84 views
binding & pmap interaction change?
There are several somewhat old blog posts out there advising caution when mixing dynamic variables, binding, and pmap, e.g. here, where we get the following code snippet:
user=> (def *foo* 5)
...
0
votes
3answers
136 views
PHP: How to use dynamic variable name with a class' setter
I have a class with a private member "description" but that proposes a setter :
class Foo {
private $description;
public function setDescription($description) {
$this->description = ...
1
vote
2answers
179 views
Parse text with dynamic variables in java
I need to parse text, and put varibales into it. Something like that:
lorem ${var} dolor sit amet consectetur adipiscing elit
end put String var = "ipsum" insted of ${var}
What the easyest way to ...
4
votes
1answer
708 views
ColdFusion - How to check if upload filefield is empty - esp with dynamic field name?
I am giving the form a dynamic number of file upload fields. So on the form side, I'm looping through this dynamic number (say 3, as index 'm'), and naming each filefield input 'ResumeFile#m#'. On ...
-3
votes
3answers
856 views
Dynamic variable names in Java [closed]
I am reading from a comma seperated file and splitting the contents into an array. I am doing this in a while loop so I would want my arrays to have have a different name dynamically because the last ...
0
votes
2answers
2k views
JQuery - Remove part of string and keep the rest
I'm receiving multiple strings from a API and sometimes I have a string that looks like this.
first part <!-- Slut på Mall: variable --> second part
I want to use jQuery to exclude the part ...
1
vote
2answers
2k views
Dynamic Variable Names iOS [duplicate]
Possible Duplicate:
create multiple variables based on an int count
Objective C Equivalent of PHP's “Variable Variables”
I'd like to use some dynamic variable names in a ...
2
votes
1answer
244 views
Creating new object with dynamic variables in PHP
I want to create a new object using this
$procedure = new ${$s.'\\'.$p};
It doesn't work. Why isn't this possible?
0
votes
1answer
93 views
Better to use a grounded list, or no?
I'm a csci student at Colorado Mesa University. The department head teaches a grounded method for linked lists:
struct nodeType
{
int id;
nodeType *link;
};
void createList(nodeType ...
1
vote
1answer
462 views
How to pass dynamic variable to Action Filter in ASP.NET MVC
I would like to use a variable to pass a dynamic value to my action filter. I thought it would be something like this:
[MessageActionFilter(message = "User is updating item: " & id)]
public ...
1
vote
2answers
245 views
PHP: Is it possible to dynamically change the name of a variable?
I have code which selects data from my database and then sets these selected values to a variable.
However I need to run the query many times. I am wondering if I could use a while/for loop to run ...
1
vote
1answer
495 views
Handle dynamic variable with Xtext grammar
In my DSL variables are dynamic, they are created the first time a value is assigned to them. So this is a valid code:
a = 0
b = 2 // new variable created
a = 3 // existing variable reassigned
My ...
2
votes
2answers
971 views
How to use string in Ruby variable name?
I have a string that I want to use as part of a variable name. Specifically, in Rails route paths:
<%= foo_path %>
<%= bar_path %>
I want the first part of the route name to be dynamic. ...
0
votes
1answer
412 views
Creating Dynamic Variable using dynamic data from MySQL in PHP
I am a newbie to programming and here too.
$sqlb="SELECT * FROM $tbl_name3 WHERE Batch=$batch AND Bcode=$bcode AND Regulation
='$regulation' AND Year='$yval' and Sem='$sval' GROUP BY Smallsubname ...
0
votes
2answers
244 views
How use dynamic variable without missing ] after element list?
I have a dynamic variable like this:
var oneButton= null;
var oneMoreButton= null;
var differentNameButton= null;
var anotherButtonDifferent= null;
Then i have this:
switch(valor){
case 0:data ...
6
votes
7answers
8k views
Dynamic Variable Names in Java:
How can I achieve this in Java?
I have given the requirements below:
int n1,n2,n3;
for(int i=1;i<4;i++)
{
n<i> = 5;
}
So that n1, n2 and n3 all have value '5'
11
votes
5answers
2k views
Are Variable Operators Possible?
Is there a way to do something similar to either of the following:
var1 = 10; var2 = 20;
var operator = "<";
console.log(var1 operator var2); // returns true
-- OR --
var1 = 10; var2 = 20;
var ...
0
votes
1answer
764 views
Javascript - storing the index of all array values in a variable
Say I have an array in JS: var fruits = [apple,orange,banana]
I want to store the index of each fruit in variables such that at any point in time, if I add more stuff to the array, I will still know ...
3
votes
2answers
974 views
Replacing Text Inside of Curley Braces JavaScript
I am trying to use JavaScript to dynamically replace content inside of curly braces. Here is an example of my code:
var myString = "This is {name}'s {adjective} {type} in JavaScript! Yes, a {type}!";
...
2
votes
2answers
316 views
Assignin in second level struct
I am dealing with a small tricky issue in matlab:
I want to assign values to a dynamically created struct (2. level):
my struct looks like this:
a.b.c = 1 %Creates a struct with two levels
now ...
0
votes
2answers
2k views
Batch Scripting — Creating variables based on input
I am trying to use batch scripting to create and assign variables dynamically based on a space separated list of computer names.
The computer names are assigned to %hosts% (which are pulled from ...
0
votes
1answer
344 views
import multiple sounds in a for each loop, actionscript 3
So im recreating my ear training program with more effective coding so i can add on to it.
original i did.
//88 C8
var mp3Req88:URLRequest = new URLRequest("88.mp3");
var mp3_88:Sound = new Sound();
...
46
votes
5answers
36k views
Javascript dynamic variable name
In PHP you can do amazing/horrendous things like this:
$a = 1;
$b = 2;
$c = 3;
$name = 'a';
echo $$name;
// prints 1
Is there any way of doing something like this with Javascript?
E.g. if I have a ...
2
votes
3answers
1k views
How to access variable dynamically inside an anonymous function/closure?
To keep the global namespace clean, my JavaScript code is wrapped like this:
(function() {
/* my code */
})();
Now I have some variables declared in this scope which I want to access using a ...
0
votes
2answers
107 views
[“var”+1]=someValue - Can something like this be done?
function giveValue(n){
["r"+n]=5;
}
giveValue(10);
You get the idea.
The point is that I have a handful of variables with similar name, varying only in a number at the end. Using a switch ...
2
votes
2answers
450 views
How to create dynamic fields in Google App Engine expando class?
I have a db expando class called widget.
I'm passing in a json string and converting it to a dict and then adding it to the datastore.
My question is how can I loop through my dict to create dynamic ...
0
votes
3answers
264 views
Dynamic functions, variable inputs
Right now, lets say I have code much like this...
$some_var=returnsUserInput();
function funcA($a) {...}
function funcB($a,$b) {...}
function funcC($a,$b,$c) {...}
$list[functionA] = "funcA";
...
