F
|
FunkDaddy 7/8/2011 |
I'm not 100% clear on your question, but I am assuming you are referring to Access "Yes/No" field type right? By default those fields have values of 0 = No and -1 = Yes. In MySQL those are usually handled as field type (referred to as columns like most major db systems out there) of "tinyint", where PHPR assigns 0 = No, and 1 = Yes. |
A
|
ant author 7/8/2011 |
I'm not 100% clear on your question, but I am assuming you are referring to Access "Yes/No" field type right? By default those fields have values of 0 = No and -1 = Yes. In MySQL those are usually handled as field type (referred to as columns like most major db systems out there) of "tinyint", where PHPR assigns 0 = No, and 1 = Yes. I hope this helps clarify how you should handle true/false or Yes/No fields in MySQL. Best,
|
F
|
FunkDaddy 7/8/2011 |
In visual editor you simply double click on the field then on choose "checkbox" in the edit box and it'll format it into the right html input control type for you. |
A
|
ant author 7/8/2011 |
In visual editor you simply double click on the field then on choose "checkbox" in the edit box and it'll format it into the right html input control type for you.
|