I am currently trying to send some data from and Android application to a php server (both are controlled by me).
There is alot of data collected on a form in the a
Change
(String url = "http://www.server.com/MainPage.php";)
to
(String url = "http://www.server.com/MainPage.php?";)
Question mark at the end is necessary when you're trying to send parameters to php script.