我有这样的表单内容:

<tr>
        <td>c.&nbsp;What is the poverty level of the clients that your institution aims to reach? (Check all that apply):</td>
        <td><input type="checkbox" name="sfsd" value="fsdsdf" />Very poor clients<br />
            <input type="checkbox" name="sfsd" value="fsdsdf" />Poor clients<br />
            <input type="checkbox" name="sfsd" value="fsdsdf" />Low income clients<br />
            <input type="checkbox" name="sfsd" value="fsdsdf" />Not a specific focus/all population
        </td>
        <td><input type="text" name="mfi_name" class="text required" id="mfi_name" maxlength="30"/></td>
</tr>


现在,我必须制作一张表格以插入此问题的答案,如何在phpmyadmin中做到这一点?

最佳答案

您可能不需要整个表来保留此问题的结果。如果要创建它,它会像这样...

form_id | answer
---------------


您可以将结果存储在VARCHAR或TEXT字段中,或将其存储在具有整数值的字段中,并具有用于关联文本值的表(以便以后处理)。

您可能想要一个存储所有答案结果的表。

form_id | repsondent_name | response_1 | response_2


在phpMyAdmin中,如果您还没有数据库,请创建一个数据库,然后通过单击数据库并填写“创建新表”字段来创建一个新表。添加与您所有表单字段相对应的列。您可能需要阅读一些有关字段数据类型的信息。

http://www.tizag.com/sqlTutorial/sqldatatypes.php

09-11 19:54