RE: Local, City, County Sales Tax and Taxes
ocularmagic <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.features |
|---|---|
| Message-ID | <ffa091798a65acaa3c9a798e729d78ad@osCommerce-Forums> |
This message was sent from: Features http://forums.oscommerce.com/viewtopic.php?p=163140#163140 ---------------------------------------------------------------- The function is strtoupper, or strtolower which ever you prefer. Here is the example from php.net: [code] $str = "Mary Had A Little Lamb and She LOVED It So"; $str = strtoupper($str); print $str; # Prints MARY HAD A LITTLE LAMB AND SHE LOVED IT SO [/code]