there is a section here.... that fetches the results from a mysql query...
---
--
Code
while ($sth->fetch) {
$dbs{$row[0]} = {};
$dbs{$row[0]}->{props} = [@row];
# print join(",", @row), "<BR>\n"; # 1,CELCAT,?,4,Sybase
}
now from my understanding here....
$dbs[$row[0]] = {}; - that makes it an empty array? an initializer of it..
$dbs{$row[0]}->{props} = [@row]; - now does this fill in the results into an element called props...
if you guys can explain in detail what exactly is going on here, it will help me a lot.