Description
This function displays a HTML snippet to manage MySQL® users.
Examples
LiveAPI PHP Class
$cpanel = new CPANEL(); // Connect to cPanel - only do this once.
$list_users = $cpanel->api1('Mysql','listusers'); // Call the function.
LiveAPI Perl Module
my $cpliveapi = Cpanel::LiveAPI->new(); # Connect to cPanel - only do this once.
my $list_users = $cpliveapi->api1('Mysql','listusers'); # Call the function.
cPanel Tag System (deprecated)
Warning:
In cPanel & WHM version 11.30 and later, cPanel tags are deprecated. This example is present in order to help developers move from the old cPanel tag system to our LiveAPI.
We strongly recommend that you only use the LiveAPI system to call the cPanel APIs.
<cpanel Module="Mysql::listusers()">
Output (HTML)
cptest_dbuser <a href="deluser.html?user=cptest_dbuser"><img src="/frontend/x3/images/delete.jpg" border="0" alt="" /></a><br />
cptest_dbuser2 <a href="deluser.html?user=cptest_dbuser2"><img src="/frontend/x3/images/delete.jpg" border="0" alt="" /></a><br />
Parameters
This function does not accept parameters.
Returns
This function displays an HTML-formatted list of database users that are associated with the cPanel account.