i could not find a clear answer on how to access my own localhost for development environment to test http services. So far i have tried doing http://localhost:8080/Folder/this.php and it goes www.localhost.com ??? i have checked that the access port is 80 in config file.
here is a code fragment that i wanted to implement on
function TMSSvc($http,$rootScope){
this.loadBlogs= function(){
$http.get("http://localhost:8080/webService/getBlogs.php").success(function(result){
$rootScope.$broadcast("TMSApp.blogs",result);
});
}
}
Can you help me? I am a beginner in this . Thank You