</p>
                <p>
                    Once you have your credentials, update them in the top of the example.php file.
                </p>
                <?php 
} else {
    ?>
            <p>            
                Below is a simple example to show you how to get a list of all your TrackVia apps.
            </p>
            <?php 
    /*
     * Once you have created an api object, you can then use it to quary data from the api. $tv->getApps() will
     * get a list of all the apps that you have in your account along with the app id. 
     */
    $apps = $tv->getApps();
    ?>
            <h2>Your Trackvia Apps</h2>
            <ul>
            <?php 
    /**
     * The results are an array of objects similar to this
     * array(
     *     array(
     *          id => 432
     *          name => "Some App"
     *     ),
     *     array(
     *          id => 3543
     *          name => "Some other app"
     *     )