I made a localhost application for fetching and saving information to database in android . The path of php file on localhost(xampp) is
private static String url_index = "http://10.0.2.2/prince/select_city.php";
What will be the new path private static String url_index
for android application as i had buied the domain and space on server (suppose www.android.com) and i uploaded the file to public_html to my server(CPanel)
private static String url_index = "new path after uploading the file on CPanel";
Please help me