1
vote
6answers
78 views
What is the best way to manage array or arrays in classical ASP
PHP provides associative arrays but there is no such thing in classical asp. I am looking for a class or function that allows me to create and traverse a hierarchy similar to this: …
0
votes
2answers
21 views
What is the appropriate data structure for this array in CSharp?
Hey guys, If i've got this data structure in PHP, what data structure is the best for it in CSharp?
$array = Array(
[dummy1] => Array (
[0] => "dffas",
…
0
votes
0answers
21 views
Generate a two dimensional array via LINQ
I am trying to create a matrix of doubles, representing a correlation between entities.
Here's how I'm doing it via LINQ
double[][] correlationsRaw = (from e in entitiesInOrder
…
0
votes
1answer
16 views
Why is the table filled with Array[0], Array[1],Array[2],Array[3] after the following SQL statement is executed?
Why is the table filled with Array[0], Array[1], Array[2], Array[3] after the following SQL statement is executed?
mysql_query("INSERT INTO choicetable (announcementid, question, …
0
votes
6answers
48 views
Recursive php function that turns nested array into nested html blocks
Hi guys,
I'm looking to write a recursive php function that would call a function to generate nested HTML blocks ( not necessarily only DIVs ). So for example, for the following a …
0
votes
2answers
39 views
Putting array of arrays into a spring context
I just found a TestNG test case that uses Spring to provide its data source. As a result the code is quite clean and concise.
However, I need to expand the test cases so they can …
0
votes
3answers
67 views
CakePHP function to convert dotted arrays to multidimensional
In CakePHP, it seems like a lot of functions can take their arguments as nested, multidimensional arrays, or as dotted strings:
$this->MyModel->contain(array(
'Something …
0
votes
2answers
42 views
Remove all sub arrays for multidimensional array in PHP.
What is a simple mode, in PHP, to remove all the sub arrays of a multidimensional array? What I want is to remove all the sub arrays but the top one...
Thanks,
titel
0
votes
2answers
36 views
Writing Multidemisional Array jQuery
Hi, Good Day!...
I would like to ask on how to write Multidimensional Array in jQuery ?
its oky if its in basic syntax, im still new to jQuery.
1
vote
2answers
71 views
Fastest way to read a file line by line with an arbitrary number of characters in each
Ok, I'm trying to figure out which way would be faster to read a text file that I'm working with. The contents of the file look like this
1982 3923 3542 4343
2344 3453 2
334 4234 …
1
vote
2answers
57 views
Displaying a Multidimensional Array in a Bar Graph (in JavaScript)?
Hey
Is it possible for someone to give me a few pointers on how to display a multidimensional array in the form of a bar graph?
The array is multidimensional, with three elements …
0
votes
2answers
66 views
Create Multi-Dimensional Array With Algorithm Using Data in Single-Dimensional Array
I have an single-dimensional array of PHP objects. Each object has two attributes, one attribute is the object's unique ID and the other is the unique ID of another object in the a …
0
votes
5answers
128 views
Array to XML — Rails
I have a multi-dimensional array that I'd like to use for building an xml output.
The array is storing a csv import. Where people[0][...] are the column names that will become the …
0
votes
4answers
84 views
Is it possible to iterate over a multi-dimensional array in smarty?
Can someone provide a simple demo? I can't seem to get my head around the smarty syntax for iterating over an array that looks like the one below. I want to get at values at all …
2
votes
4answers
59 views
PHP Multidimensional Array Sum/Erase Problem
Hi, I have an array that looks like the following:
The format:
[Person#] => Array
(
[Bank#] => Balance
.
.
[Bank#] => Balance
)
…
