i have this array:
Array
(
[name] => jim ross
[address] => colorado
[occupation] => actor
)
i will use the following code to get the data from the form
if(isset($_POST['submit'])) {
$values = $_POST['details'];
}
here $values contains the name, address and occupation
Now I want to insert it into database by capitalizing each words, but ucwords()
doesn't apply to arrays. How can I apply it to every element in my array?