Initial Setup

Before setting up Fusion please first create your application and download the latest files from your profile.

You must add the Fusion.php file to your project!

Go to line 8 on Fusion.php & update your program id in the base url.

<?php
if (!isset($_SESSION))
{
    session_start();
}
class Fusion
{
    public static $BaseURL = "https://fusionapi.dev/app/{APPID}/api";
}
?>

// Replace {APPID} with your ID on fusions dashboard.

Last updated