In my project running on wamp server, I have a error on my "apache_error_log" that looks like this :
AH00135: Invalid method in request CCM_POST /ccm_system/request HTTP/1.1
I dont know if this is related to my code which is :
$filtre = array('nom'=>"$nom", 'prenom'=>"$prenom", 'matricule'=>"$matricule");
The Array gets emptied. But, when I add this before the array, the array has the values.
$nom = $_POST['nom'];
$prenom = $_POST['prenom'];
$matricule = $_POST['matricule'];
I have seen a project working with the same code but the array gets the value and nothing was added. I don't know if we need to include some PHP extension or module.
Can someone tell me if it's related or not?
Tanks you