Quote:
Originally Posted by maxicep
where stores the datas ?
|
Datas are stored inside the Table of the current DB thru the <installcode>....</installcode> Code as below...
HTML Code:
<installcode><![CDATA[$db->query_write("ALTER TABLE " . TABLE_PREFIX . "usertextfield ADD notepad TEXT");]]></installcode>
The following Code removes the DB Table if you decide to remove that hack...
HTML Code:
<uninstallcode><![CDATA[$db->query_write("ALTER TABLE " . TABLE_PREFIX . "usertextfield DROP notepad");]]></uninstallcode>