A variable is a named data storage location in memory. Using variables, a computer program can store numbers, text, binary data, or a combination of any of these data types. They can be passed around in code, to other functions and even other applications.
0
votes
5answers
83 views
How do I pass an array of strings into another method?
My code is like this:
public class Test() {
String [] ArrayA = new String [5]
ArrayA[0] = "Testing";
public void Method1 () {
System.out.println(Here's where I need ...
1
vote
2answers
27 views
VisualBasic 2010 - merge 2 strings and read them as a variable
i have this code, and i want to access some variables.
Dim k1 as String = "Something"
Dim k2 as String = "Something"
... to k230
------------------Then i have this:
Dim rnd = New Random()
...
0
votes
1answer
16 views
Java Wifi multiplayer
I am making a wifi multiplayer game(like Minecraft wifi multiplayer), but I haven't found anything easy. I only want to send variables from one computer to the other.
A link would help enough.
0
votes
0answers
65 views
how to dynamically update javascript from php?
Simple question, how can i update javascript from php ? currently my code works like this ;
// retrieves an id from database
foreach( $childPrs as $chProduct )
{
$checkforsub = ...
0
votes
2answers
34 views
PHP variable from HTML text input
I'm having trouble setting a HTML input text into a PHP variable $x. If I set $x to an image URL, my code seems to work. Now I want the user to input an URL instead of myself. I've tried using [value ...
0
votes
2answers
30 views
javascript array combine variable values
I am having trouble finding the correct wording to find the answer.
I am trying to combine elements in an array.
array[0] = "bob";
array[1] = "john";
array[2] = "frank";
for (i = ...
0
votes
1answer
34 views
can't echo php class variable
I want to write a php simple pagination class. Here is my code:
<?php
class Pagination {
public $rowsPerPage;
public $currentPage;
public $totalPages;
public $totalRows;
public $firstElement;
...
0
votes
2answers
30 views
Set a variable to the data element
Setting up a Flickr script... In my ajax success function, how would I put a var in with the actual this element? I know this and $(this) represent different things. Hard to write out, so I'll use my ...
-2
votes
0answers
40 views
Accessing and chaging variables from different classes in c++ [closed]
I am trying to make a C++ game and have not been very well versed in class files. I basically made this game over a year ago and am no remaking it from scratch trying to use better programming ...
1
vote
2answers
47 views
javascript: use variable from one file in other
So, I am building a pretty complicated plugin and ran into a snag. (This is how I learn though, so snags are good...) My code looks similar to the following:
Document 1
if( !window.TextEdit ){
var ...
2
votes
1answer
67 views
JavaScript: detect invisible variables
I have a question about JavaScript hidden or invisible variables to us. Because they are not created in global context. When we write large web applications, some variables or functions live ...
1
vote
4answers
43 views
batch variable nested into a batch variable
Depending on the text after 'X' and before 'Open file' in mypath variable, I want to call a function passing this text as argument in order to replace it by 'foo'. To do it, I have written
@echo off
...
-1
votes
1answer
45 views
How to pass a variable in a URL using Perl?
I'm trying to pass parameters in a URL. I don't know what's missing, I tried to see how the URL looks after executing this script.
my $request3 = HTTP::Request->new(GET => $sql_activation);
my ...
1
vote
1answer
50 views
Not getting data from MySQL - PHP
I'll start off with the code:
$permission = $_SESSION['permission'];
// Connect to database
$con = new mysqli("localhost", "privateinfo", "privateinfo", "privateinfo");
// Check connection
if ...
2
votes
2answers
41 views
how to use variables from one submit button by another submit button inside same form in php
In my php code, there is a form with multiple submit buttons inside and the variable of 1st form is allocated the value after clicking the submit button and similar for the second form by $_POST[]. ...
1
vote
0answers
35 views
Java variable across multiple include blocks - variable cannot be resolved
I have jsp page that looks something like this:
MyPage.jsp
<%@ include file = "/Title.jsp" %>
<%@ include file = "/Header.jsp" %>
<html>...</html>
In Title.jsp there is a ...
2
votes
2answers
43 views
Assigning a constant cast to a var in C#
How smart is the C# compiler, given the following:
float a = 1; //A
var b = 1f; //B
var c = (float)1; //C - Is this line equivalent to A and B?
var d = Convert.ToSingle(1); //D - Is this line ...
0
votes
1answer
36 views
variable variables in php with mysql_result
this is my problem:
echo "SELECT * FROM fornitori_elatos WHERE NomeFornitore = '".${mysql_result($elenco_fornitori,$k,"NomeFornitore")}."';";
generate this error:
PHP Fatal error:Function name ...
1
vote
2answers
48 views
Store arithmetic operators in an array with Fortran
I would like to solve a given equation of the following kind with FORTRAN:
1 ? 2 ? 3 = 7
In this equation only the arithmetic operators are missing and the solution would be '+' for the first ...
0
votes
0answers
20 views
creating a variable that change sizes in for loop
I have to create a fits file using the data from two IDL structures. This is not the basic problem.
My problem is that first I have to create a variable that contains the two structures.
To create ...
-2
votes
1answer
28 views
how to create view with variables inside?
i have some code here but first i want to explane my question.
i want to create a view but thats not possible in a view because my SELECT statement hase some variables in it i have seen some answers ...
-2
votes
0answers
42 views
PHP passing variable amount of parameters to an anonymous function [closed]
Hi I am very new to all this and am working with Mysql and PHP. I would like to be able to create a function from variable names that are stored in a database as strings eg.
database field ...
-2
votes
1answer
29 views
remembering variables in select box [closed]
I have This Code In HTML
<tr>
<td>
Gender:
</td>
<td>
<select name="Gender">
<option selected="" value="Default">
Gender
</option>
<option ...
0
votes
1answer
10 views
Apache environment variables
I am using Apache 2.2 on Ubuntu 12.10
I opened my .htaccess file and set an env var called cache:
SetEnv cache ''
I have a php file which generates the cache and saves it in the environment var ...
0
votes
2answers
27 views
variable jquery inside twig template
I'm trying to use a jquery varaible inside a twig template to send by ajax, but I can't access to the jquery variable inside the twig:
My code is:
<script type="text/javascript">
...
-1
votes
1answer
35 views
Different JLabel declaration when click and drop at JPanel
I made a program that simulates logic gates and I'm having a problem with my Logic Gates as JLabel by adding to my Drawing Canvas. When I drop two input (for example switch) that connected to wire, ...
1
vote
1answer
50 views
How to get environment of a variable in R
I was wondering if there is anyway to get the environment of a declared variable. Say I already have declared a variable to an environment and want to use that variable's environment to declare a few ...
0
votes
2answers
19 views
ksh - How insert a echo command in a variable
how can i insert this command line in a variable? :
echo "abc:def" | awk -F':' '{print "field1: "$1 "\nfield2: "$2}'
Thanks in advance
0
votes
1answer
50 views
strange behaviour for $_GET
I have a multidimensional language site. When calling a page that does not exist, .htaccess will refer to 404.php in the root direction.
The .htaccess looks like that:
ErrorDocument 404 /404.php
...
-4
votes
1answer
43 views
How to access/edit/delete variables in a class [closed]
What is the best way to accomplish the following:
class foobar {
public $a = 'one';
private $b = 'two';
}
$obj = new foobar();
( here )
From ( here ) how is the following accomplished?
...
0
votes
1answer
23 views
Change of JS State Variable in Googlemaps API Geocoder does not work
Hello smarter than me people. ;)
I really cannot figure this weird behaviour of my code out.
What it is supposed to do is to execute the function fixedlocation() when a button is pressed in order to ...
0
votes
3answers
40 views
Determining if a Variable is Numerically an Integer in Python
I'm having an issue with determining if a variable is an integer. Not the variable type, but the actual value stored in the variable. I have tried using variable % 1 as a test, but it does not seem to ...
0
votes
2answers
39 views
Euler's Method Python Variable Input Type
I'm having an issue with the following code. It's currently in progress but a large problem that I'm running into is that my input of a function returns an error no matter what type of input I have ...
1
vote
4answers
42 views
Solving a Variable Equation defined by the User
Answers in C, Python, C++ or Javascript would be very much appreciated.
I've read a few books, done all the examples. Now I'd like to write a simple program.
But, I already ran into the following ...
0
votes
0answers
3 views
Querey regarding use of commas after variables in python eg %i,
Im currently working through the learn python the hard way website tutorials
http://learnpythonthehardway.org/
and currently stuck on a section of question 10,
the comment that the lecturer posted ...
-3
votes
2answers
60 views
How to get value of variable from other class?
I have a public integer variable (MainReg) in my Counter Class. I want to get value of this variable and set it in my JComponent class. Here is piece of my JComponent class:
public class Komponent2 ...
-1
votes
0answers
35 views
How do I get my main class file to use an integer variable set in a separate class file, within the same project?
I'm having a really basic problem with my simple java project.
I'm working in netbeans IDE.
The problem I'm running into is that I have 2 separate java class(or instances?) files within the same ...
-3
votes
0answers
25 views
Rewriting code to make Pixel gotten using getPixel(2,3) [closed]
A 201 beginner coded into the main method:
public static void main(string[] a)
{
new Picture(FileChooser.pickAFile();
//more code tried...
}
REWRITE this below to make the Pixel gotten ...
-2
votes
6answers
40 views
Outputting a PHP variable inside a HTML image tag. Syntax problems [closed]
I'm storing image names in a database and I'm trying to work out who to output them in image form when I'm displaying the database contents.
Currently I'm doing
echo $rank . " " . $row['name'] . " ...
-1
votes
2answers
82 views
How to get variables to behave like arrays?
private static int test[] =new int[]{2};
public static void main(String[] args) {
System.out.println(test[0]);
test(test);
System.out.println(test[0]);
}
private static void test(int[] ...
0
votes
0answers
4 views
Vbulletin4 register POST variables and use theme in a custom template
I search but I do not find a proper answer how to register a posted variable in vbulletin4 and use it in my custom template. Let say I have an input field which would post q to a newly created custom ...
0
votes
3answers
62 views
jquery get href value and use it as a variable
So I have set up a scrolling code for my website.
<section class="fpage">
<a class="next" href="#view">test</a>
</section>
<section ...
0
votes
2answers
55 views
How to convert $_GET into a variable?
I have a problem while using $_GET.
I have a URL that looks like http://www.example.com/404.php?uri=xyz. Now I would like to read out that $_GET['uri'] and convert it into a variable that will be ...
0
votes
3answers
50 views
BASH Parsing variables from config file
Having the following content in a file :
VARIABLE1="Value1"
VARIABLE2="Value2"
VARIABLE3="Value3"
I need a script that outputs the following :
Content of VARIABLE1 is Value1
Content of VARIABLE2 ...
2
votes
3answers
54 views
How to hide or delete the zero in my bash script?
This is my script:
echo -n "number 1 :";
read bil1
echo -n "number 2 :";
read bil2
multiple=$(echo $bil1*$bil2 |bc -l |sed -e 's/^\./0./' -e 's/^-\./-0./');
echo " Your result : $bil1 * $bil2 = ...
1
vote
2answers
81 views
Do i have to initialize all variables?
I want to know what it's the correct way to do that things in JAVA.
My test code:
public class InitializeTest {
int i;
int b;
int x;
String frase;
public static void main (String ...
0
votes
0answers
72 views
Convert function result to variable
I am stuck for many hours now. Please help me with the following:
I would like to output the following code into a variable:
window.plugins.text.translate("word", function(result) { return result; }
...
1
vote
3answers
22 views
PHP Class Properties change after assigned to variable
Take this example. I never noticed behaviour like this:
class foo
{
public $foo = 0;
public function addFoo()
{
$this->foo = $this->foo + 1;
return $this;
}
}
...
4
votes
2answers
94 views
PHP variables randomly becomes NULL
For quite a while now we experience a very weird problem with our hosting server. Once a while (seems randomly) variables in PHP become NULLs.
In general everything works perfectly fine, but once a ...
0
votes
0answers
22 views
Batch DIR and VAR
I am currently working on a "advanced" batch script, just to keep my mind to something.
What i am trying to make is a (as far as its possible to make one) Bot script that includes the following ...


