Posts by Leonardo Roberto • 111 points
8 posts
-
2
votes1
answer10706
viewsQ: How to use foreach with this type of JSON (PHP)
I am trying to display the values of a JSON with PHP more unsuccessfully. Code Used: JSON { "friendslist": { "friends": [ { "steamid": "76561197960265731", "relationship": "friend", "friend_since":…
-
1
votes1
answer4184
viewsQ: Load content into a DIV using Javascript
I need to upload the video.html page to div with video id using Javascript. I have the following script: function video() { $.ajax({ url: "video.html", cache: false, success: function(html){…
-
1
votes1
answer681
viewsQ: How to use ternary operator to determine what to display?
How can I correctly use the Ternary Operator in Javascript. I have the following code: var Requisitar = function(){ setTimeout(function(){ $.ajax({ url: 'https://steamgaug.es/api/v2', // Acesso…
-
0
votes0
answers41
viewsQ: Is there a way to update PHP within HTML without having to reload the page?
Is there a way to update PHP within HTML without having to reload the HTML page? I have a page that shows the response time of an API but so that the response time can be updated frequently I use…
-
1
votes1
answer122
viewsQ: Variables in a JSON
Is there any way to vary the value of a JSON? Let’s look at an example: I have the following JSON { "ISteamClient": 0, "ISteamFriends": 0, "ISteamUser": 0, "IEconItems_440": 0, "IEconItems_730": 0,…
-
0
votes2
answers19198
viewsA: Script /.bat to kill certain process on all users logged in to the computer
create another bat and use this, if your network has a domain can help runas /env /savecred /nome-do-usuario-administrador@dominio "caminho do bat que mata o processo" after running just you enter…
-
4
votes1
answer380
viewsQ: How to Display Various Values of a JSON in PHP
How can I display all the values of a JSON in PHP ?? Let me give you an example, I use the Code below to request JSON $json_file =…
-
1
votes1
answer522
viewsQ: How to display the values of a JSON via PHP?
How can I display the values of a JSON via echo in PHP, I am using the code below to receive the JSON from the Post Office website $json_file =…