quelqu'un pourrait il m'expliquer la fonction:
Code : Tout sélectionner
<?php
get_magic_quotes_gpc()
?>
Code : Tout sélectionner
<?php
$contact = (get_magic_quotes_gpc()) ? $_POST['contact'] : addslashes(trim($_POST['contact']));
?>
Code : Tout sélectionner
<?php
get_magic_quotes_gpc()
?>
Code : Tout sélectionner
<?php
$contact = (get_magic_quotes_gpc()) ? $_POST['contact'] : addslashes(trim($_POST['contact']));
?>