Hello, how can I do to insert data in Mysql from a HTML form to include a unique user_id with multiple choice.
EX:
<input type="checkbox" value="5" name="voiceip">VoiceIP<br>
<input type="checkbox" value="3" name="ip">IP<br>
<input type="checkbox" value="1" name="cisco">Cisco<br>
<input type="checkbox" value="2" name="novell">Novell<br>
<input type="checkbox" value="4" name="test">Test<br>
The user user can selected 3 fields at max and when he submit the form it should be insert in MySQL with user_id = 1 after with each value separatly like
ID User_id group_id
1 1 1
2 1 2
3 1 4
Thanks for your quick help
Cedric Sorry for my english 😕