[Development Guides Home](/guides) >> [Guide to the LiveAPI System](/guides/guide-to-the-liveapi-system) >> [LiveAPI Methods](/guides/guide-to-the-liveapi-system/guide-to-the-liveapi-system-liveapi-methods) # Guide to the LiveAPI System - The footer() Method The `footer()` method calls the cPanel interface's footer. Use this method to add the necessary footer buttons at the bottom of the interface. ## Example ### LiveAPI PHP Class ```php // Inject the title page into the footer element. $cpanel->footer(title); ``` ### LiveAPI Perl Module ```perl # Inject the title page into the footer element. $cpliveapi->footer(title); ``` ## Parameters | Parameter | Type | Description | Possible values | Example | | --- | --- | --- | --- | --- | | `title` | *string* | The title of the page to inject into the cPanel interface's `` element. | A valid HTML page's `title` value. | `title` | ## Returns This method returns a string value that contains the contents of the interface page before the `` element.