0
votes
2answers
34 views
PHP Variables from another var
This may sound confusing:
$myVar = "Helloooo!";
$text = "myVar";
How could i call $myVar from just the fact $text is filled with the variable name, perhaps this ? (it doesnt work though)
echo …
0
votes
2answers
61 views
How do I use a variable in a UNC path in powershell?
Hi All, and thanks in advacne for your help large or small.
A bit of a newbie to the powershell world and I'm trying to count the contents of a folder on a remote server.
I know that:
…
0
votes
4answers
57 views
PHP: Set Varible to Get Value
I am creating a game web site using PHP and I want to just use one page for the game rather than have a bunch. I want to have the info entered like this:
`?swf=[path to .swf]&name=[name of …
1
vote
4answers
131 views
String[] array variable shows a null value although I am setting a value to it.
I have a string variable
static String[] genrename;
I am assigning values to it in one of my method and then displaying its content.
It does store the value fine. But when I am accessing the String …
1
vote
1answer
80 views
setting strings in gdb
c++:
int main()
{
string a = "a";
... ...
}
when i debug in gdb:
(gdb) set var a = "ok"
Invalid cast
I run the program and pause at a break point after string a has …
0
votes
6answers
70 views
Python - assign lists within nest to variable
Hi folks,
I am new to python and would appreciate a little help.
How does one do the following:
Having converted each line within a file to a nested list,
e.g. [['line 1', 'a'], ['line 2','b']] …
1
vote
3answers
30 views
asp.net system variable?
Hi
Is it possible to set a variable in the system which is not for each user unique?, who access the page?
Ex.
I access the page and in codebehind something like that:
// create variable over all
…
1
vote
3answers
71 views
declaring empty class member in python
Hello,
i am trying to read a tree structure file in python.
I created a class to hold the tree objects. One of the members
should hold the parent object.
Since the parentObject member is of the …
0
votes
11answers
198 views
What is the meaning of the variable name foo? [closed]
I noticed that foo is used as a variable or function name a lot by programmers.
So I started to use it a lot, but I don't know what it means.
What does this word mean and why is it used a lot?
0
votes
3answers
442 views
Referencing variable workbooks in Excel using VBA
Hello,
I have a scenario where a user creates a workbook, then this workbook (let's call it A) is assigned a variable. Later on down the line, the user creates a second workbook (let's call it B), …
1
vote
2answers
66 views
Javascript variable type (byte).
I searched for javascript byte type variables and I can't find byte type variable???
Thanks.
0
votes
3answers
85 views
Make all variables global, PHP
Is there a way to make all variables global?
0
votes
2answers
96 views
Javascript: Global variable within function
Hi,
Is there a way to set a global Javascript function within HTML.
I can only pass it as a function like
PostComment(this.content)
So i can only access it inside the PostComment function. Is …
2
votes
3answers
134 views
How to determine if a string is a valid variable name?
I'm looking for a quick way (in C#) to determine if a string is a valid variable name. My first intuition is to whip up some regex to do it, but I'm wondering if there's a better way to do it. Like …
0
votes
4answers
91 views
Why can’t I pass variables into an included file in PHP?
I've had this problem before before with no real resolution. It's happening again so I'm hoping you experts can help.
I set a variable on my index.php based on the $_GET array. So I use this code:
…
