how to address url for local host?

When i run the game on my computer, it posts the scores and displays top3 on unity game view.
On the phone it doesnt work.
What should I change in the url to connect localhost from my android device?

var addScoreUrl1="http://localhost/tutorial/addscore.php?";

You probably want to put the IP address of your computer instead of localhost.

thanks apparition