/ Published in: PHP
Esta funcion limpia un array contra inyección SQL.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function clean_array_for_post($post){ foreach($post as $key => $value){ } return $post; }