Multiple servos

I am somewhat new to programming, and i have no idea how to program for arduino, so i was wondering where i learn how to program for servos, and how do i control Multiple servos independently at the same time, via a controller, or buttons. I am building a robotic arm, and i am trying to program the servos for each one of the fingers, and i have had no success. Any help would be appreciated
Thank you

get a servo controller that allows you to hook up external power so there is enough for all the servos. Download the library for that controller and place into your Arduino Library folder. It comes with example sketches that demonstrate it's capabilities.

It sounds like you are trying to run before you can walk.

Someone who is "somewhat new to programming" should start simple (e.g. one and only one servo) and then increase the complexity a little (e.g. two servos). Trying to control at least 7 servos (five fingers, a forearm and an upper arm) for someone who is "somewhat new to programming" sounds like a recipe for disaster.

For so many servos, you should learn about declaring and using arrays. This will at least avoid the temptation to declare servo0, servo1, servo2, ..., servo6.

If you would show us the program for the servos for each one of the fingers, perhaps we could explain to you why you "have had no success".