Skip to content

Instantly share code, notes, and snippets.

@davidkryzaniak
Created October 14, 2013 22:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidkryzaniak/6982961 to your computer and use it in GitHub Desktop.
Save davidkryzaniak/6982961 to your computer and use it in GitHub Desktop.
FargoPHP - Getting started
<?php
//Get the class
require_once('FargoPHP/FargoPHP.class.php');
//Create a new FargoPHP object.
//Takes in the IP address (or DNS/Domain name) of the Fargo. Do not include the "http://" or the ending /
//Username, Password
$myFargo = new FargoPHP('192.168.1.34','admin','admin');
//if you have DNS setup, you can use
//Again, Do not include the "http://" or the ending /
//$myFargo = new FargoPHP('myfargodns.dyndns.com','admin','admin');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment