Error parsing data org.json.JSONException: Value <br of type java.lang.String cannot be converted to JSONObject

前端 未结 2 1125
名媛妹妹
名媛妹妹 2020-12-17 05:45

Have been trying on these codes and I want to send a email which will auto generate the password and the random password will then update in my database column which is the

2条回答
  •  無奈伤痛
    2020-12-17 06:47

    As the error message says:

    [..snip..] json.JSONException: Value 

    The JSON string you're trying to parse is invalid - looks like it's got some raw HTML, which mean it's either badly generated, or PHP is inserting errors/warnings and destroying the string.

提交回复
热议问题