0
votes
4answers
97 views
What am I missing here? Perl Regex
This code works - It takes an array of full txt file paths and strips them so that when $exam_nums[$x] is called, it returns the file name
for (0..$#exam_nums)
{
$exam_nums[$_ …
0
votes
3answers
31 views
PL/SQL Query with Variables
I have a fairly complex query that will be referencing a single date as a start or stop date multiple times throughout. I'm going to have to run this query for 3 different fiscal y …
0
votes
1answer
24 views
Variables in SqlLite
I was wondering if there is a known technique for saving and using variables in an SqlLite database.
I am looking for something like the $something variables one can find under Or …
1
vote
3answers
54 views
global variable in ASPX C#
Hi, I write a ASPX c# page, and I MUST use a global variable like this;
public static Decimal _Total;
protected void Page_Load(object sender, EventArgs e)
{
if (Pa …
0
votes
4answers
61 views
passing form variables into a url with php
Hi,
I have the following form which allows a user to select dates/rooms for a hotel reservation.
<form action="booking-form.php" method="post">
<fieldset>
<d …
0
votes
1answer
23 views
Passing Variables between views / view controllers
Hi I'm new to ObjectiveC / IPhoneSDK and I'm informally trying to study it on my own. What I'm basically trying to do is from one view there are 12 zodiac signs. When a user clicks …
0
votes
2answers
25 views
php call member variables off a class within static method
Hello,
I am using some method to autoload helper files with functions
The only problem I am having now, is how to call the variables in that class.
Because I am not instantiatin …
2
votes
2answers
80 views
C#/.NET app doesn’t recognize Environment Var Change (PATH)
In my C# app, I am programmatically installing an Oracle client if one is not present, which requires adding a dir to the PATH system environment variable. This all works fine, bu …
1
vote
4answers
105 views
Should I use 0/1 or True/False boolean?
0/1 can be flexible and can add options such as "2, 3, 4" in the future.
Does TinyINT in MySQL take up more space than boolean?
Personally, I use 0 and 1 for everything.
You c …
2
votes
1answer
42 views
Why does this code in VBA Power Point work fine witout Dim commands for numbers?
From one of VBA tutorials I learned that variables contining numbers should be firstly declared as integers:
Dim mynumber as integer
But, please, look at this code:
Sub mat …
0
votes
3answers
51 views
How does php cast boolean variables?
How does php cast boolean variables?
I was trying to save a boolean value to an array:
$result["Users"]["is_login"] = true;
but when I use debug the is_login value is blank.
an …
1
vote
3answers
85 views
Dynamic Variable Names Coldfusion
Hey Guys, I'm having a tad of an issue dealing with Dynamic Variable Names. What is happening is I have a CFC that builds part of form for me using some data in a table. Then the c …
0
votes
4answers
70 views
Cakephp: how to access to model “variables” (mapped from db) from the controller after a set?
Ok i have this controller:
class ExampleController extends AppController {
var $name = 'Example';
public function test_me () {
$this->Example->Create();
…
0
votes
3answers
44 views
calling a variable inside html
I am trying to make a script that when you type in a hex value and press submit itchanges the text color to the color inputted.
It seems the problem is the way i am calling the va …
2
votes
3answers
45 views
Shell script variables - command not found
I have a shell script that will let me access global variables inside the script, but when I try to create my own, it responds with: command not found.
#!/bin/bash
J = 4
FACE_NAME …
