in reply to DBI fetch array

You seem to be getting one row from your result set, closing the database handle, and printing out the first value retrieved.
The while loop doesn't do anything, because you are dealing with a closed database handle. Moreover, even if you moved the disconnect statement to the end of your code, you are fetching the second element of an array ( $rowxx[1] ) that contains only one element ( $rowxx[0], e.g., the date ). Remember that array indices start at 0.
I would urge you to consider separating the display and data retrieval bits of your code, and using some kind of indentation style to make things easier to read.