how to store checkbox value in php
Hi , I want to store value of checkbox which are checked in MySQL database how to do it?
This is in php
<input type="checkbox" name="platform[]" value="IPhone"/><strong> iPhone</strong>
<input type="checkbox" name="platform[]" value="ipad"/><strong> iPad</strong>
<input type="checkbox" name="platform[]" value="android"/><strong> Android</strong>
<input type="checkbox" name="platform[]" value="blackberry"/><strong> Blackberry</strong>
<input type="checkbox" name="platform[]" value="windowmobile"/><strong> WindowMobile</strong>
<input type="checkbox" name="platform[]" value="symbian"/><strong> Symbian</strong>
help me....
|