RE: Local, City, County Sales Tax and Taxes
ocularmagic <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.features |
|---|---|
| Message-ID | <523f4f69dfd9171af7565e0fddd06825@osCommerce-Forums> |
This message was sent from: Features http://forums.oscommerce.com/viewtopic.php?p=165048#165048 ---------------------------------------------------------------- [quote="jgkiefer"][quote="ocularmagic"]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][/quote] How would this get inserted into the code?[/quote] [code] $customer_city['entry_city'] = strtoupper($customer_city['entry_city']); [/code] That would change the city to all upper case.