#Mobile: it can't capture the post data with form submit normally
1 messages · Page 1 of 1 (latest)
Someone else came up with a fix for this. Android does not allow post body content, there is a workaround somewhere…
Today I ran into an interesting issue with NativePHP when submitting forms from an Android WebView. Unlike normal browsers, WebView handles POST requests slightly differently, and $request->all() may return an empty array, even when the form has valid data. Here’s an example Blade view: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <ti...