MySQLm Docs - Starting - back

How to Include MySQLm?


<?php
    /* How to include MySQLm without Downloading: */
    /* For including this way you'll need to enable "allow_url_include" */
    /*  How you do that can be seen on the other image labled 'demo.php.ini' */
    # Including the newest Development build of MySQLm 1.5
    include 'https://raw.githubusercontent.com/AtjonTV/MySQLm/dev-1.5/src/MySQLm.php';

    # Including the newest version of MySQLm
    include 'https://raw.githubusercontent.com/AtjonTV/MySQLm/master/src/MySQLm.php';

    /* How to include MySQLm with Downloading: */
    # Including the downlaoded version
    include 'MySQLm.php';
    # or
    include '/where/ever/the/mysqlm/file/is/MySQLm.php';
?>    
            

; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
; http://php.net/allow-url-include
allow_url_include = On