0
votes
2answers
18 views
Problem with function call inside preg_replace.
Does not work, the $1-value is lost when calling the function:
echo preg_replace('"\b(http://\S+)"', '<a href="$1">'.findTopDomain('$1').'</a>', $text);
Works fine, outputs: …
0
votes
1answer
27 views
Passing variable from shell script to sql statement
I was trying to make cat1.txt as a variable ($2) so that it will be inserted in sql select statement. Is there a way to do this?
my cat1.txt
1111
2334
2234
3333
4444
....
....
etc.
my SQL …
0
votes
2answers
50 views
Can I use a the value of a variable as the name of property in c#?
How do all!
I want to be able to access a value in a class using the variable passed to a procedure.
e.g. _results.projection[2].Current.FundDC to become something like
…
1
vote
4answers
73 views
How to pass javascript variables to php
Hello,
I want to pass javascript variables to php using hidden input of a form.
But i have met a problem here, the $salarieid can't get the value from $_POST['hidden1']. Is there something wrong?
…
0
votes
1answer
36 views
Add variable to jQuery src attribute
I have a script that I reuse in lots of different places. The script has several image paths specified, and I want to make it easier to implement by setting one 'path' variable at the start then …
0
votes
1answer
47 views
How to see the values of a table variable at debug time in T-SQL?
Can we see the values (rows and cells) in a table valued variable in SQL Server Management Studio (SSMS) during debug time? If yes, how?
0
votes
1answer
45 views
Java: Roller program - debug - variables not updating from JTextField and NumberFormatException thrown regardless of valid information.
Problems:
I am unable to get the values of the JTextFields or the rollResultTotal to update.
Even if the data in the JTextFields are valid, a NumberFormatException is still thrown.
Questions: Why …
0
votes
3answers
42 views
Clear all script-set variables easily (Javascript/jQuery).
I'm trying to find a simple way to reset all current variables in the DOM. My app has a 'locked' state, but currently, when locked, the last set of information is still visible in the DOM if you look …
0
votes
5answers
61 views
How to convert a string value to a variable in javascript?
var test1;
$(document).ready(function () {
test1 = $("#test1ID").jQueryPlugin();
});
var test2;
$(document).ready(function () {
test2 = $("#test2ID").jQueryPlugin();
});
...
This is done …
0
votes
6answers
212 views
global vector C++
Is it possible to have a vector as a global variable is C++?
Like this:
class system {...};
vector<system> systems;
when I try to compile this I get an error. The compiler I'm using is gcc …
1
vote
3answers
46 views
Store javascript variables in array
I am sure someone has gone over this but I have had no luck finding some results.
I want to know what is the fastest way to maintain a proper variable scope.
Here is some example jquery code I wrote …
2
votes
6answers
130 views
Removing duplicates on a variable without sorting.
I have a variable that contains the following space separated entries.
variable="apple lemon papaya avocado lemon grapes papaya apple avocado mango banana"
How do I remove the duplicates without …
2
votes
5answers
111 views
How can I edit a JavaScript variable?
Hi,
Say I have a variable
tab_something
I need to drop the tab_ bit.
In php it's easy, using str_replace...
Will
tabSelect = document.location.hash.substr(1,document.location.hash.length);
…
0
votes
1answer
40 views
jquery load a selector contained in a variable
Hello,
Can anyone help me with the right syntax to load some div, please
I try'd to concat it in several ways, except the right way
rcp= "#div02";
$("#content").load("/inc/forms.php " +rcp'"', …
1
vote
2answers
26 views
Variable scope js - return initial assignment instead of changed
Have next script:
function clicker(){
var linkId = "[id*=" + "link]";
var butnId='initial';
$j(linkId).click(function(){
var postfix = $j(this).attr('id').substr(4);
butnId = '#' + …
