Tagged Questions
0
votes
1answer
50 views
Bash dynamic variable names
I am confused about a bash script.
I have
function grep_search() {
magic_way_to_define_magic_variable_$1=`ls | tail -1`
echo $magic_variable_$1
}
I want to be able to create a variable ...
0
votes
2answers
36 views
Dynamically changing a Smarty variable via. PHP?
I have an outer template in Smarty (the background template), which displays the versioning number of a certain section of the project in the footer.
The variable in question, {$NoVersion}, is a ...
0
votes
2answers
52 views
Can I replace placeholder text in a rendered HTML page dynamically?
I wish I could think of a better way to word my question, but basically here is what I want to do: in an HTML file, I would like to fill the body with a specific string multiple times. For example:
...
0
votes
2answers
30 views
For Loop with dynamic numbers in timeout
I have a for loop that is running a timeout function that needs dynamic numbers but instead I'm getting the end result instead of the increments in some cases.
Here's my code (p.s. yes I realize ...
1
vote
2answers
78 views
Coverting AJAX JSON function to return data objects instead of html into a modal window
Background
Okay, I have a page which displays simple information on rows from a mysql database. For example, the table has 7 columns, but only #'s 1, 3 & 4 are displayed on the page. On the ...
1
vote
1answer
44 views
How to create a matrix with supplied dimensions or create dynamic variable name in Ruby for each subsequent array?
I'd like to create a class and pass 2 variables to that class; width(x) and length(y). With those variables the program should establish either a matrix or create x number of arrays with y number of ...
0
votes
2answers
27 views
accessing dynamic variables from a form
I used to have register_globals turned ON (I know - bad bad bad horribly bad) and now I'm changing it up and the specific application is my DVD collection. Adding a DVD presents a set of checkboxes ...
0
votes
1answer
58 views
Python/Django Forms: Dynamic variable creation and access for Form fields
I have a django form class only with one widget. I would like to give a name to this widget like <select name="custom_name"></select> but Django takes the name of the variable and gives it ...
-1
votes
5answers
86 views
Dynamically name variables javascript
I need to dynamically create variables inside a loop, but i have no idea how. I have read about using eval(); but all i found it's just about dynamically changing the value inside the variable.
I ...
1
vote
2answers
84 views
How to define a dynamic mixin name in SASS?
I want to dynamically create mixins in SASS, named after each item in the list, but it doesn't seem to work.
I tried this but I get an error:
$event-icons: fair, concert, art-show, conference, ...
1
vote
1answer
51 views
Multiple arrays loop shell
I have a problem building a "dynamic" array.
First of all I create an array to generate a list of names of files:
declare -a pgidarr=`run "select partition_id from ETL.PARTITION_GROUP_MEMBER where ...
0
votes
4answers
62 views
How to read variable names and their values into a column?
get the name of variables and their values putting them into a column of another data set using sas
data 1
var1 var2 var3
1 2 3
2 3 1
data 2
no var4
1 var1= 1, var2= 2, var3=3
2 var1=2, var2= 3, ...
1
vote
3answers
92 views
Dynamic global variables in C
Can someone please explain to why this won't work:
int DIM = 128, hDIM = DIM/2 , dDIM = DIM*2;
int main(int argc, char **argv){
DIM *= 2;
printf("\n Double DIM is %d \n",dDIM);
}
Why ...
1
vote
1answer
221 views
d3.js noob : How to pass dynamic variable as data
I'm trying to change the data set via a variable passed from the clicked button.
Here's an example of what I'm doing so far: http://jsfiddle.net/earlybirdtechie/qmC9E/
...
0
votes
4answers
93 views
PHP - Changing content dynamically
Alright, so I have a PHP app that, in essence, fills up an array with references to elements in an XML file, does a shuffle() on the array to randomise it, then cycles through the array, displaying ...
0
votes
3answers
105 views
Accessing _POST and _GET dynamically using ${$varname}
[FINAL EDIT]
Seems like I've been missing an important Warning contained in Variables variable PHP Manual
http://www.php.net/manual/en/language.variables.variable.php :
Please note that ...
1
vote
1answer
86 views
How to dynamically construct query output variables in Coldfusion?
I'm trying to loop over an array which contains column names I need to display. A user can define his own columns, so this will be a dynamic column name list
For example, column names may be:
...
0
votes
1answer
124 views
Change textbox value dynamically?
I have 7 textboxes named lblSun, lblMon etc and 7 buttons named cmdSun, cmdMon etc. I want to change the Text value of these text boxes and buttons from within the query. I've tried Me.Controls("cmd" ...
1
vote
1answer
118 views
Dynamic Field Name in SSRS
I'm trying to Retrieve a value of a field, but that name of the field needs to be dynamic.
i.e.
=iif(Fields!Year1.Value = 1, 0, 1)
But I need the Year1 part to be returned from another dataset, so ...
-3
votes
3answers
70 views
Dynamic PHP variable assigned to static function [closed]
Let's say i have a static php class
class abc{
protected static $instance;
var $delta;
public static function cdf(){
if(!(self::$instance instanceof self)){
...
0
votes
1answer
85 views
TSQL dynamic filters on one column
The table to query has the following columns :
(name varchar(50),values varchar(50),description varchar(50)).
The users want to select multiple names and a range of values for each of these name ...
0
votes
2answers
110 views
GET parameter when rewritten by htaccess
This is my default dynamic link:
www.example.com/news/index.php?id=5&title=Test-Title-3
This is the link that have been rewritten by htaccess:
www.example.com/news/5/Test-Title-3
Now ...
0
votes
1answer
69 views
Dynamically add index to a List
is there any way that I can add a new index to a list dynamically / run-time
like there wasn't any index at first then each time the timer ticks, one index is added to the list (values will be from a ...
1
vote
0answers
66 views
Wordpress: Passing $tags to [shortcode] in sidebar for dynamic content relevant to current page
I'm using Testimonials Widget shortcode, which uses a custom post type for its content. I'm trying to put it in the sidebar displaying testimonials which share tags with the current post, and in the ...
0
votes
0answers
49 views
asp.net vb dynamic type in public withevents my_thing AS dynamicThing
i have the following user controls list.ascx, animal_add.ascx, and owner_add.ascx
in my list control i am want to dynamically add animal and owner controls to the page and create handlers for the ...
1
vote
5answers
480 views
How to create a dynamic variable in Powershell, sucha as date/time etc
Hi i am not exactly sure if my wording is right but i need a variable which contains current date/time whenever i write data to log ; how can i do that without initializing everytime.Currently ...
0
votes
1answer
44 views
Dynamic targets with autotools
I am trying to achieve something very specific with autotools - dynamic variable names. My goal is to create dynamic targets depending on a certain configuration file, similarly to the Linux kernel.
...
-1
votes
1answer
64 views
Dynamically adjusting css variables in a style sheet?
I am currently building a template and have come across the following problem. I want the user to be able to choose a color, any color, based on a hex number that their theme will have. It is ...
-1
votes
1answer
57 views
How to use Dynamics variables in layout properties?
Hi i'm a new developer in Android
and i want to create global variable to put them in my Layout like that:
in Java:final dimen myglobalValue = screenSize.width;
final dimen myglobalValue2 = ...
0
votes
3answers
178 views
set variable to field name of sql query
My goal here is to set a variable to a field name from a mysql query. Some pseudo code below
1. $query = "SELECT firstName, lastName FROM users WHERE userName = 'mhopkins321';"
2. $result = ...
0
votes
0answers
15 views
Create a new list view eachtime when the user clicks a button, and access later,using javascript in windows8
vararray[n] = 'dataArray' + n;
varlist[n] = 'dataList' + n;
eval("var dataArray" + n + "=[];");
eval("var dataList" + n + "=new WinJS.Binding.List(" + vararray[n] + ");");
i AM TRYING TO ACHIEVE IT ...
3
votes
2answers
36 views
Can an object dynamically loaded with possible exceptions be declared as final?
At first I was going to make the question solely about the Image class, but I wanted to make it as broadly applicable as possible.
Basically, here's the scenario. I'm making a file for GUI ...
0
votes
3answers
89 views
Assign dynamic value to a variable on reasizing window - javascript
I need to assign a dynamic value to a variable. Specifically, I would like to assign the window width and detect if window has been resized.
To assign window width I know it would be as follows:
var ...
2
votes
4answers
290 views
Java: change a variable depending on dynamically generated text field name?
I have an ArrayList of TrainingClass objects with a variable "priority".
I am making a settings frame, where for each element currently in the ArrayList I make a TextField where the user sets ...
0
votes
3answers
64 views
Define a class with a variable name in PHP?
I am wanting to be able to do something to the order of this
$name = "Hello".time().mt_rand();
class $name {
function hellolol() {
echo "LOL";
}
}
$name::hellolol();
So that I can ...
0
votes
1answer
87 views
Creating new variables automatically as the user needs them [closed]
I have to design a program that would be for an imaginary company as a project for my computer Science AP class. The Program will track the names of workers, hours they work, their pay rate, and if ...
0
votes
2answers
106 views
JavaScript dynamic variable in for loop [closed]
I need to create some rules in javascript as below. I want to do create these rules in for loop however I couldn't able to dynamically create the variable parts.
var _docmap = ...
0
votes
5answers
140 views
Dynamic variables names in javascript
I have variable:
var variableDynamic = 1;
// or
var variableDynamic = 1 + i++;
Is there any way to use that to create dynamic variable names, for example something like this:
var variableName ...
3
votes
3answers
88 views
xslt - how to create a variable with text content of space characters of a dynamically determined length that will perform well
I would like to create a variable that contains a text value that is a number of space characters but the number of characters is not known until runtime. This needs to be done a great many times so i ...
1
vote
2answers
106 views
push items to array whose variable name is dynamic in php
i have the following 3 variables:
private $a_total;
private $b_total;
private $c_total;
now when the fields are filled out with some data for totals, names of those fields ...
0
votes
2answers
493 views
PHP echo dynamic radio button with variable name
So i have these radio buttons in XHTML that I want to put into a PHP function to generate and I can't get it to work.
In XHTML it looks like this and is working;
<p><input type="radio" ...
1
vote
2answers
54 views
How can I have to values be used in an either/or manner?
I am trying to make simple poker game and came to point where the 'number' for an Ace could be either a 13 or a 0 (Ace high vs Ace low). As I am using a Bubble sort to determine straights, I wanted ...
0
votes
1answer
158 views
1
vote
1answer
250 views
adding values to variable array VBA
I am trying to loop through a table that has a column for "customers" and "dollar amount". If my loop finds a customer called "greg" or "henry" I want to add his "dollar amount" to an array of an ...
0
votes
3answers
214 views
How to store a Coldfusion #variable# in MySQL and output the variable value (and not the variable name) from the database?
I'm running Coldfusion8/MySQL 5.0.88.
I have two tables in my database:
modules
textblocks
My site is running multiple languages, so I'm doing this at the beginning of every page to load ...
0
votes
3answers
81 views
django/python variables inside strings?
I'm new to python and would like some assistance.
I have a variable
q = request.GET['q']
How do I insert the variable q inside this:
url = "http://search.com/search?term="+q+"&location=sf"
...
0
votes
1answer
81 views
Get variable from another variable in Pascal
I have problem with PASCAL.
In Javascript I could do:
window.b = 'hello';
var a = 'b';
/* And I can get variable b having only variable a */
console.log(window[a]); // output = hello
How can I ...
0
votes
2answers
118 views
dynamic allocation and returning a local variable
In this piece of code I'm trying to create a list which contains all the chars form an input file, and my main problem is with the sentence "You can't return a local variable of the function" Iv'e ...
0
votes
1answer
278 views
PHP trying to create dynamic variables in classes
I need to construct a class with alot of variables directly from the Database, For simplicity we'll name them 'userX', I've looked into ORM just a little, but its way over my head.
Essentially I ...
0
votes
1answer
154 views
Dynamic name variable java (parser creating a structure)
as far as I have read everywhere you can't create variables with a dynamic name in Java so I'll explain the problem to see if there is an alternative. My problem is that I have to parse a long text ...


