need to record all information in lower case in the database. How to do this with mysql?
mysql_query("INSERT INTO event (codigo_stm,playlist,startdate,starttime,repeatc,priority,loopatend,enddate,shuffle) VALUES ('".$dados_stm["codigo"]."','".$_POST["playlist"]."','".$_POST["data"]."".$data2."' ,'".$_POST["hora"].":".$_POST["minuto"].":00' ,'".$_POST["repeatc"]."' ,'1','1','".$_POST["data_fim"]."','".$_POST["shuffle"]."')");
What PHP or database function do I use to insert lowercase into the database?