Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

question about the data type

i want to make an input to an array like this:
data=Array(10,28)
how can i input the element of the array as some variables to it?
[138 byte] By [Melanie] at [2007-11-9 17:49:23]
# 1 Re: question about the data type
If your trying to put the value of what is stored in "data" into position
(10,28) of your array, you need to switch your sides of your equasion
so that. Array(10,28) = data.
The other way your saying that you want the variable Data to contain what
is stored in position 10,28 of your array.

Cheers,
Q*bert

I normally don't like calling array, normally I use arList or something...

Q*bert

"Melanie" <meilingw@mail.hongkong.com> wrote:
>
>i want to make an input to an array like this:
>data=Array(10,28)
>how can i input the element of the array as some variables to it?
Q*bert at 2007-11-11 23:17:15 >
# 2 Re: question about the data type
10 and 28 are the elements of the array, and just an example
i want to pass an array of data to a asp program, or are there any method
i can do that?

"Q*bert" <luke_davis_76@hotmail.com> wrote:
>
>If your trying to put the value of what is stored in "data" into position
>(10,28) of your array, you need to switch your sides of your equasion
>so that. Array(10,28) = data.
>The other way your saying that you want the variable Data to contain what
>is stored in position 10,28 of your array.
>
>Cheers,
>Q*bert
>
>I normally don't like calling array, normally I use arList or something...
>
>Q*bert
>
>"Melanie" <meilingw@mail.hongkong.com> wrote:
>>
>>i want to make an input to an array like this:
>>data=Array(10,28)
>>how can i input the element of the array as some variables to it?
>
Melanie at 2007-11-11 23:18:10 >