There is a code
<?php $content = file_get_contents('https://www.domaintally.com/api/v1/whois?access_token=bfb4f4f431f1f366fcff9b30b78fe5d67ee20e97&domain=google.com'); $decode = json_decode($content,true); var_dump ($decode); ?> it displays an associative array with a bunch of unnecessary special characters, the tags <br> 'do not work, so I can not understand where is the key in the array to continue working with data
What could be the problem and how can I put it in a readable form?
