I didn't understand the question very well but I think I understand what you need.
Use while to iterate trough each row.
while($row = $resultDesc->fetch_assoc())
{
echo 'Description:
';
echo ''. $row['description'] . '
';
}
That's not the exact solution but atleast shows you the path.