valuationbreak evenprofitcontributionforecastshiftqueuingbusiness analysis
accountbasbudgetBAS-I.Cshare valueshort salesinvestment
site mapform1
Browse All Question and Answer Items
Items selected where Item is 266
Questions & Answers
Q: Using php's ucfirst or ucword we need to make sure that the form comes in as Joe Blow and not joe blow or JOE BLOW. Where can I implement php's ucwords?
A: You can add code just before the /*#### End User Configuration Settings line. To convert input to upper case first letters for all words add the following code $defucfirst ='FieldName'; if(isset($_POST[$defucfirst])){$_POST[$defucfirst] =ucwords(strtolower($_POST[$defucfirst]));} where FieldName is the name of the form field you you want to be processed by the uppercase first function.
Question and Answer Item 266 - Browse All Question and Answer Items