if you really need it one way would be to try and use urlencode() & see what it does.. another way would be to replace with some obscure character and then replace it back..
problem seems to be in how Request parsing array once found # the following is missing
$url = $request->all(); returns: {"form_id":"0","label_code":"5555777","field_code":"324232","field_value":""}
the request array is "truncated" at # so i can urlencode only what before # ...
I know i should encode it on app that sends the request, that would be best practice as for security also, but i cannot access that code at moment and i have to manage from laravel side ... so they must have "freedom" to send any special char in values, and while " or even = symbols give no problem at all only # is causing troubles...is that char so special? does it have any particular need I'm missing ?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community