Posts by Robson Pontes Silva • 26 points
2 posts
-
1
votes2
answers733
viewsA: How to make a full date common?
I’d do it this way: function arruma_data($data){ $arr_mes = array("Setembro"=>"09","Outubro"=>"10","Novembro"=>"11"); $arr_data = explode(" de ",data) $datafim = str_pad($arr_data…
-
0
votes1
answer361
viewsA: How do I leave NULL if $_POST is empty in the Mysql database?
As this inserting via PHP simple quotes is different from null an idea is to put in variable the contents example: $sobrenome = strlen($sobrenome) > 0 ? "'$sobrenome'" : "NULL"; $vsl = "INSERT…