Zen Cart Logo
Forums / General Questions / New fields in Create account information

New fields in Create account information

Locked

Views: 671

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
26 Aug 2010, 11:46 AM
#1
chandroo007 avatar

chandroo007

New Zenner

Join Date:
Mar 2010
Posts:
55
Plugin Contributions:
0

New fields in Create account information

Hai,
I add new some fields in to account create form .But Which page is used to store account information in database
please help me:bigups:

26 Aug 2010, 4:54 PM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: New fields in Create account information

includes/modules/create_account.php

27 Aug 2010, 3:17 AM
#3
chandroo007 avatar

chandroo007

New Zenner

Join Date:
Mar 2010
Posts:
55
Plugin Contributions:
0

Re: New fields in Create account information

Hai,
Thanks, But i cant see , the company name store which table:clap:

27 Aug 2010, 7:38 AM
#4
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: New fields in Create account information

I add new some fields in to account create form .But Which page is used to store account information in database
You did not ask about "company"
Thanks, But i cant see , the company name store which table
What editor are you using to view the contents with???
Use it's search function

about lime 48

  if (ACCOUNT_COMPANY == 'true') $company = zen_db_prepare_input($_POST['company']);

about line 116

  if (ACCOUNT_COMPANY == 'true') {
    if ((int)ENTRY_COMPANY_MIN_LENGTH > 0 && strlen($company) < ENTRY_COMPANY_MIN_LENGTH) {
      $error = true;
      $messageStack->add('create_account', ENTRY_COMPANY_ERROR);
    }

about line 264
if (ACCOUNT_COMPANY == 'true') $sql_data_array['entry_company'] = $company;```

27 Aug 2010, 12:11 PM
#5
chandroo007 avatar

chandroo007

New Zenner

Join Date:
Mar 2010
Posts:
55
Plugin Contributions:
0

Re: New fields in Create account information

Thanks:clap: