It just helps make your code a little easier to understand and simplifies things a bit. So instead of writing
echo "Category Name: ".$row['catName'] ;
You could write
echo "Category Name: ".$category ;
This could help with a really complex result set that you were looping through and doing a lot of stuff to each row.