datatype for checkboxes in php

mysql, phpmyadmin

Solution

The MySQL documentation recommends using tinyint(1) for boolean values, so tinyint(1) is probably the best.

http://dev.mysql.com/doc/refman/5.0/en/numeric-type-overview.html

Problem

What should be the data type that will be entered in phpmyadmin if I plan to use a checkbox as an input?

Original source