Hello,
Is there a way to generate a dynamic array from info gathered from a database??
Thanks
derek
Sure, just add the elements to the end of the array. One way to do this is to leave the index unspecified:
$array[] = "new element";
PHP has dynamic arrays be default. I don't think there is a way to create static array!