Posts by akliemke • 69 points
4 posts
-
0
votes2
answers1889
viewsA: Country and code list
I don’t know any API you can get such data from. I think it is easier to create a table for consultation. Use the Smallpdf to convert the PDF and import the data into your table.…
javascriptanswered akliemke 69 -
7
votes4
answers41980
viewsA: Is there any way to comment on multiple lines in Python?
Below is an example: ''' Isso e um comentario multilinhas em Python. '''
-
0
votes2
answers295
viewsA: How to read JSON data sent by javascript in PHP
If you are expecting a string: $string = file_get_contents('php://input'); If you are waiting for an object use the json_decode.…
-
0
votes2
answers74
viewsA: Retrieve data from the database
It is necessary to pass the connection parameters when using the mysqli_query functions, and as the comrade said, try not to mix the two libraries. More about the mysqli:…