2015-10-28 87 views
0

我做了一個localhost應用程序來獲取信息並保存到android中的數據庫。在localhost(XAMPP)的PHP文件的路徑是Android應用程序的php文件路徑(服務器/ CPanel)是什麼?

private static String url_index = "http://10.0.2.2/prince/select_city.php"; 

什麼將是Android應用的新路徑private static String url_index,因爲我曾buied服務器上的域名和空間(假設www.android.com)和我上傳的文件到public_html到我的服務器(的cPanel)

private static String url_index = "new path after uploading the file on CPanel"; 

請幫我

+0

取決於你買的域名,你把你的PHP文件的路徑。 –

+0

這也與Android無關,因爲PHP文件不知道是什麼叫它。 – dstudeba

回答

1

如果上傳文件到public_html目錄,它會在你的URL的根被發現。所以你的情況這將是:

http://www.android.com/select_city.php

+0

感謝您的支持。我會查一下。 :) –

+0

感謝它工作。 –

相關問題