Tagged Questions

0
votes
6answers
59 views

variable assigning in javascript

hi Friends, I have a js function I want to assign a variable to a variable my variable is in a forloop I have two variables ie; var spcd_1= "http://www.colbridge.com"; var spcd_2 = …
1
vote
1answer
28 views

Is a variable binding to a collection item possible

Hello everyone, I'm trying to bind to an item inside a collection but the index for that item needs to be "variable". Take the following pseudo syntax for example: <TextBlock Text="{Binding …
0
votes
1answer
14 views

Knowing the availability of variables in crontab

What all variables BY DEFAULT are available if a script is executed by the crontab on UNIX Are .profile and oracle.env executed when the cron job is executed?
0
votes
5answers
70 views

What’s the difference between ‘var $x’ and ‘var x’ in jQuery? [closed]

Possible Duplicate: Why would a javascript variable start with a dollar sign? What's the difference between ‘var $x’ and ‘var x’ in jQuery?
0
votes
1answer
65 views

Log4J – Runtime variable substitution

Log4J appears to have an annoying restriction – at runtime, variable substitution does not appear to work. In this example File: Log4j.properties file_pattern=%d{ISO8601} %-5p %m%n …
1
vote
3answers
61 views

PHP Variable Scope

Is there a way to declare a variable so it is available in all functions. Basically I want to call: Global $varName; automatically for every function. And no, I can't use a constant. I don't think …
0
votes
2answers
34 views

populate a $_REQUEST variable value from database record - how?

I am trying to get the values posted from a form select. The select name is dynamic, meaning that the name value is defined by a database record. In the form processing script, I want to call back …
1
vote
4answers
58 views

PHP if-statement using $_POST variable doesn’t seem to work. Why?

On one PHP server I have two files. One file (the name is "first.php") contains this code: <html> <head> <title>First Page</title> </head> <body> Please enter your …
0
votes
3answers
57 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
39 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 with a object …
0
votes
4answers
104 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, var1, which would be …
2
votes
3answers
68 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 and inside functions?
1
vote
4answers
86 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 jsonIssues = {}; // declare …
0
votes
3answers
59 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, and not the contents …
0
votes
1answer
48 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 …

1 2 3 4 5 17 next
15 30 50 per page