I have set of PHP fields.
Before sending the values into a query, I want to change the letters to upper case.
Is there a way to do something like:
You want to use strtoupper
$cust_name = "john"; echo strtoupper($cust_name); // Outputs JOHN