taxList
A function which returns an array of Tax objects.
value = taxList ( )
- value - A Tax array result.
Example
Get a list of all Tax objects:
<?phpinclude 'taxes.php';$all = taxList();foreach ($all as $tax){ print "$tax->name\n";}?>
A function which returns an array of Tax objects.
value = taxList ( )
Get a list of all Tax objects:
<?phpinclude 'taxes.php';$all = taxList();foreach ($all as $tax){ print "$tax->name\n";}?>