Posts by Ederson Dallabrida • 21 points
3 posts
-
0
votes2
answers50
viewsA: Problem in including data through a form using PHP and Mysql
As you said the code was copied from another working service, your problem can only be with the BD user. Check the permissions designed (read, write, update, delete data, modify tables, etc) to…
-
1
votes1
answer77
viewsA: Function does not work with variable in parameter
You need to concatenate variables, functions and strings. In PHP concatenation is done with dots (.). Ex in your first block with error: echo $nparcelas.' x R$ '.number_format($pparcelado, 2, ",",…
-
0
votes1
answer34
viewsQ: Error while getting Bytearray from.3gp file on Android/Java
I am trying to convert a file from audio.3gp for string Base64 and send to the server using Volley, but for all I know, I need to transform the audio.3gp in Bytearray and transform that array string…