Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8086147
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T18:21:38+00:00 2026-06-05T18:21:38+00:00

Why is my password not being inserted into the DB Model: function addUser($userData =

  • 0

Why is my password not being inserted into the DB

Model:

function addUser($userData = NULL, $passwordHash)
    {
        $this->db->insert('users',$userData,$passwordHash);
        return TRUE;
    }

Controller:

public function addUser()
    {
        $data['pageTitle'] = 'GA Add User';
        $this->load->view('_assets/header', $data);
        $this->load->view('addUser', $data);
        $this->load->view('_assets/footer');

        $userData = array(
            'fName' => $this->input->post('userFirstName', TRUE),
            'lName' => $this->input->post('userLastName', TRUE),
            'email' => $this->input->post('userEmail', TRUE)
        );

        $passwordHash = sha1($this->input->post('userPassword', TRUE));

        $this->db->escape($userData);

        $this->user_model->addUser($userData, $passwordHash);

    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T18:21:40+00:00Added an answer on June 5, 2026 at 6:21 pm

    EDIT:

    function addUser($userData = NULL)
        {
            $this->db->insert('users',$userData);
            return TRUE;
        }
    
    
    public function addUser()
        {
    
            $userData = array(
                'fName' => $this->input->post('userFirstName', TRUE),
                'lName' => $this->input->post('userLastName', TRUE),
                'email' => $this->input->post('userEmail', TRUE),
                'password'=>sha1($this->input->post('userPassword', TRUE))
            );
    
    
            $this->user_model->addUser($userData);
    
    
            $data['pageTitle'] = 'GA Add User';
            $this->load->view('_assets/header', $data);
            $this->load->view('addUser', $data);
            $this->load->view('_assets/footer');
    
        }
    

    Added the password to the $userdata array to keep it cleaner. And modified the addUser function. You don’t need to escape the data, the DB library will do it for you. NOTICE that you have to load views at the end of the script

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've a password form field ( not mapped to User password) to be used
I'm working on a simply password strength checker and i can not success applying
Is there a way to password protect SAS CODE within SAS? Or, if not,
$con = mysql_connect(localhost,music123_sri,password); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db(music123_telugu,
I added a custom validation method to validate a password. However, it does not
My password contains special characters like '&' and VS giving error on this like
Schema: Users ID Name Password Address ID Street UserID Both tables have an ID
Trying to create a comment application on my website. Data is not inserted properly
I have got a problem where my class apparently is not being parsed correctly
I have a pipe delimited file with some NULL date fields. I load this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.