Player input controls all the players on the network?

Does any one know how to fix this problem. I’m also using Photon.

You need to put an if statement round your control code.

if (photonView.isMine)
{
// Control code here
}

You should probably look at the tutorials posted on the Photon site. They explain this.