     
     
      ------------------------------------------------------------------------------------
      EASY TO ADD FIELDS 
      Doesn't need to edit your database table and  doesn't need to edit/add php codes
      
      How?
      1.) 
	      Just add form field:
		  example : 
		  <input name="zipcode" type="text" class="validate_blank"/>
		  
		  and then edit the config.php
          change the value of AUTOMATIC_CREATE_FIELDS_FROM_FORM to true
          example:  define('AUTOMATIC_CREATE_FIELDS_FROM_FORM',true);
      
      2.) Take note in adding fields:
          <input name="zipcode"> = this will automatically creates  fieldname zipcode in  the database table. 
          <input name="#submit"> = form fields that includes "#" sharp character will be igonored
               
      3.) After done editing the config.php file refresh module page, the new fieldname is now created. 
      4.) You can turn off now the AUTOMATIC_CREATE_FIELDS_FROM_FORM. 
    
      
      
  
     





