Hi, in your query "strtoupper" is treated as a string and not as a function. You have to write this: mysql_query ("INSERT INTO anagrafe (codice,nome, cognome, codicefiscale) VALUES ('".strtoupper($codicefiscale)."','$NOME','".strtoupper($cognome)."','".strtoupper($codicefiscale)."', ... Regards, Bastian Antonio Bernabei schrieb: > > Hi, > > > > I want to insert the upper case of the strings written in the forn, so I > put > > on the php file called these lines > > > > $NOME=strtoupper($nome); > > > > mysql_query ("INSERT INTO anagrafe (codice,nome, cognome, codicefiscale) > > > > VALUES > > > ('strtoupper($codicefiscale)','$NOME','strtoupper($cognome)','strtoupper($co > > dicefiscale)', ... > > > > but if $codice if for example abc in field codice I don't get ABC but > > uppercase(abc) > > while if $nome is mario in the filed nome I get MARIO > > > > Can I avoid to write extra lines for the conversion? > > Thanks > > Antonio > > > > -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php