I want to write something in the database, but before I want to delete all spaces in the string and upper the first letter.
That's how I wanted to do it but it doesnt work :P
//INITIALIZATION OF VARIABLE $perfectFirstname
$perfectFirstname = str_replace(' ','',$_POST["firstnameInput"]);
//PART OF MY QUERY
$sql .= "'".mysql_real_escape_string(ucfirst($perfectFirstname))."', ";
How can I do this?
You can use ucfirst for upper case: