I have a project i am working on. It contains html/javascript. I am trying to set a connection from SQL to my html/javascript project. Currently i have a Json datastructure inside my script but i wan't to change this to SQL.
Is this even possible? I can only find tutorials about php + sql
I use this query to get data from my json
$(".een").empty().append(mydata[i].name + '<br> ' + mydata[i].version + '<br> ' + mydata[i].LocalTimeZone + '<br> ' + mydata[i].country);
$(".twee").empty().append(mydata[i].input);
$(".vier").empty().append(mydata[i].properties);
Whenever you click the rectangle it shows data from the Json i want it to show data from a SQL database. Does any 1 know a good tutorial website/video?