Posts by yMF • 108 points
5 posts
-
0
votes0
answers26
viewsQ: Communication between console of two programs - Python
Good night Need to do through python communication between two programs, the second does not need to be in python, as it is just an example I have the following code print('Qual seu nome?') x =…
-
-2
votes1
answer44
viewsQ: Access JSON values with PHP
I have the following API: https://proxycheck.io/v2/42.131.121.100?vpn=1&asn=1 { "status": "ok", "42.131.121.100": { "continent": "Asia", "country": "China", "isocode": "CN", "latitude": 34.7732,…
-
2
votes3
answers84
viewsQ: Access values from a python json
I have the following python code import requests import json data = requests.get('https://proxycheck.io/v2/42.131.121.100?vpn=1&asn=1') print(data.text) That will return: { "status": "ok",…
-
1
votes2
answers115
viewsQ: Put JSON API output in PHP variable
I am trying to use the following API: http://monitor.sacnr.com/api/? IP=137.74.179.193&Port=7777&Action=info The question is: how can I put the result of [Players] => 1 in a PHP variable?…
-
2
votes1
answer282
viewsA: How to pass a php variable inside a Whatsapp link?
Try it like this: <?php echo 'Contato:</b> <a href="https://api.whatsapp.com/send?phone=55${property.contato}"> </a> '; ?> Or so: <?php echo 'Contato:</b> <a…