Array indexes cannot contain whitespace or asterisks. You can use mysql_fetch_array, which creates an array with both associative and numeric indexes, or you can alias the count() result:
SELECT size, COUNT(*) AS count FROM ....
Now you can use $rowcd['count'] or "{$rowcd[count]}" I use {}...