Until MySQL implements a bit datatype, if you're processing is truly pressed for space and/or time, such as with high volume transactions, create a TINYINT field called bit_flags, for all your boolean variables, and mask and shift the boolean bit you desire in your SQL query.
For instance, if your left-most bit represents your bool field, and the 7 rightmost bits represent nothing, then your bit_flags field will equal 128 (binary 10000000). Mask (hide) the seven rightmost bits (using the bitwise operator &), and shift the 8th bit seven spaces to the right, ending up with 00000001. Now the entire number (which, in this case, is 1) is your value.
SELECT (t.bit_flags & 128) >> 7 AS myBool FROM myTable t;
if bit_flags = 128 ==> 1 (true)
if bit_flags = 0 ==> 0 (false)
You can run statements like these as you test
SELECT (128 & 128) >> 7;
SELECT (0 & 128) >> 7;
etc...
Since you have 8 bits, you have potentially 8 boolean variables, from one byte. Some future programmer will invariably use the next seven bits, so you MUST mask. Don't just shift, or you will create hell for yourself and others in the future. Make sure you have MySQL do your masking and shifting - will be significantly faster than having the web-scripting language (PHP, ASP, etc...) do it. Also make sure you place a comment in the MySQL comment field for your bit_flags field.
You'll find these sites useful when implementing this method.
http://dev.mysql.com/doc/refman/5.0/en/bit-functions.html
http://acc6.its.brooklyn.cuny.edu/~gurwitz/core5/nav2tool.html