hello.
i'm sure this is simple, but I falter when it comes to arrays. I need to loop through a result set and assign "md_legacy" to be the key and "subp_display" to be the value:
while(OCIFetch($debut_execute))
{
OCIResult($debut_execute, "MD_LEGACY");
OCIResult($debut_execute, "SUBP_DISPLAY");
}
how might I do this in the loop, without overwriting previous array entries?
thanks very much. knelson.