hovering usernames with photon

Hi There,

How can I display floating usernames above player heads using Photon & Unity.

Thankyou,

P.S:

If this dosent work I might also use another server technology — maybe uLink??

All I need is just a login and then I can add the terain.

I can help with the networking part of this question.
To have a synchronized name for each player, use PhotonNetwork.playerName per player to set a name.
To display it, each PhotonView (attached to your game objects) has a owner. This owner is a Player with a name. This is what you want to display per GameObject.

I think you can use a 3d text object to display the name then.