<?php
    
/**
    * o------------------------------------------------------------------------------o
    * | This package is dual licensed as GPL and a commercial license.               |
    * | If you use the code commercially (or if you don't want to be restricted by   |
    * | the GPL license), you will need the commercial license. It's only £49 (GBP - |
    * | roughly $98 depending on the exchange rate) and helps me out a lot. Thanks.  |
    * o------------------------------------------------------------------------------o
    *
    * © Copyright Richard Heyes
    */

    
require_once('Messages2.php');

    
/**
    * Call the function
    */
    
Messages2::ShowSuccess("This is a success message");
    
Messages2::ShowWarning("This is a warning message");
    
Messages2::ShowError("This is a failure message");
?>