Started using new php function for Currency formatting as this is best preactice, removed Client Access and removed certian user roles

This commit is contained in:
johnnyq
2022-02-17 17:41:30 -05:00
parent fcb55a9eed
commit f2f9f22545
11 changed files with 32 additions and 131 deletions

View File

@@ -13,4 +13,11 @@
<hr>
<p>This is a great starting point for new custom pages.</p>
<?php
$fmt = numfmt_create( 'us_EN', NumberFormatter::CURRENCY );
echo numfmt_format_currency($fmt, -199.99, "USD")."\n";
?>
<?php include("footer.php"); ?>