mysql_num_rows returns number of rows that your query will give you. so you have to use:
$result=mysql_fetch_assoc($queryname)
which will give you $result array like this:
$result["fieldname1"]
$result["fieldname2"]
.
.
$result["fieldnamen"]
and after that you can use echo to display the value of field you want (in this case $result["UC"]... be carefull how you gona write name of fields inside ["...."] . it has to be same as in queryotherwise it will not work (small or capital letters);
skodman