I have a database in MySQL which I want to visualize in D3.JS. In order to do that, first I want to parse the data in JSON fo
MySQL
D3.JS
parse
JSON
To get d3.json to work, I had to call it the following way (my PHP file generates the JSON data):
d3.json("InventoryData.php").then(function(data){ console.log(data); });