hi all
i need a variable length array and i was just wondering if the code it is the same as i learned in VB. here is the code i am trying.
where $i is a counter
$rowcount is the number of rows
$arrayvariable[] is my variable lenght array
[PHP]
$i = 1;
while ($i < $rowcount)
{
$arrayvariable[$i] = $row[imgdata];
}
[/PHP]
thank you
eric
i need a variable length array and i was just wondering if the code it is the same as i learned in VB. here is the code i am trying.
where $i is a counter
$rowcount is the number of rows
$arrayvariable[] is my variable lenght array
[PHP]
$i = 1;
while ($i < $rowcount)
{
$arrayvariable[$i] = $row[imgdata];
}
[/PHP]
thank you
eric
Comment