Okey so I am building a spotify app and I will need access to my MySQL database in this app both getting and inserting data to it, now spotify don’t support PHP witch I would normally use for this so how do I work around this? I have no idea how to do this without using PHP.
Share
Spotify API uses JavaScript and you can use for example jQuery framework with it. Just save
jquery.js to your addon-folder and include it in your script. Then you can use $.post() and others to save/retrieve data from your external server.