[Beginner] Basic Twitch website integration

You don’t need PHP to call Twitch’s API. It can be done completely from JS.

Import jQuery into your page and do the following:

$.getJSON("https://api.twitch.tv/kraken/streams/zeracheilgames?callback=?").done(function(data) {
    if(data.stream) {
        online();
    } else {
        offline();
    }
});