Skip to content
Advertisement

Problem handling data to php with POST method

I’m working on an application that registers users in a database of a domain I have. I developed it using Android Studio, and I’m having some problems handling the users info to the php file using the POST method.

The main problem I have is that my app returns a success while transfering the data to the database, but when I look at it it’s empty.

Here’s my Java code:

JavaScript

and here’s my PHP code that recieves the data:

JavaScript

Advertisement

Answer

Assuming everything else is correct, your parameter type specification in the bind call has an i (integer) that doesn’t match any parameter. For 3 string parameters, you’ll want to use sss:

JavaScript

You should enable error reporting so that things don’t just fail silently. See how to get a detailed error report when a php-mysql script fails?

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement