The image field looks correct. Are you sure the database field is set up as a varchar?
The checkbox can probably be fixed by updating the binding from:
((isset($_POST["ProductInStore"]))?$_POST["ProductInStore"]:"")
to:
((isset($_POST["ProductInStore"]))?$_POST["ProductInStore"]:"0")