Please masters,I have the following inputs :
<label >Please choose :</label>
<input type="checkbox" name="outil[]" value="TV" />
<input type="checkbox" name="outil[]" value="Lecteur CD" />
And I have a table "MyValues" as the following :
+----+-----------------------------------------------------------------------+
| id | value |
+----+--------+------------------------------------------------------------- +
| 1 | a:3:{i:0;s:10:"Lecteur CD";i:1;s:16:"Console de salon";i:2;s:2:"TV";} |
+----+--------+--------------------------------------------------------------+
The field value contains a string that is serialized from the fallowing array :
array(3) {
[0]=>
string(10) "Lecteur CD"
[1]=>
string(16) "Console de salon"
[2]=>
string(2) "TV"
}
Now when the user check the inputs he wants data are sent into the server side, and I need to select id where the checked inputs exists in the value field (that is a serialized value from an array - It would be so easy if I could use the function in_array).
My query looks like:
"SELECT id FROM MyValues WHERE value = '".serialize($_POST['outil'])."' ";
But this does not work and it's normal, because the user could check only one input and he must find data.
I'm thinking to use regex in mysql if its possible to check if there is at least the sent data but I have a limited knowledge. Please master could you help to resolve this problem ?
Thank you in advance.