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 6836099
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T23:18:52+00:00 2026-05-26T23:18:52+00:00

I am in the process of creating an activation email for my registration process.

  • 0

I am in the process of creating an activation email for my registration process. I need to pass the variables containing the activation code and email address from my model back to my controller where I will send the email.

My registration form currently writes all signup data to the database and creates and activation code.

How can you pass the variables ‘activation_code’ and ’email’ from my model back to my controller for use in my email.

Model:

... 
        $new_member_insert_data = array(
            'first_name' => $first_name,
            'last_name' => $last_name,
            'email_address' => $email,
            'password' => hashPassword($salt, $password, $hash),
            'activation_code' => activationCode($email, $hash.$salt),
            'hash' => $hash
        );

        $insert = $this->db->insert('members', $new_member_insert_data);
        return $insert;
    }

Controller

  $this->load->model('members_model');
                  if($this->members_model->create_member())//return variables here somehow
                    {

//get activation code + email variables
//send activation email
                        $this->session->set_flashdata('success', 'success');
                        redirect('home', 'location');
                    }
                    else
                    {
                        $viewdata['main_content'] = $category;
                        $this->load->view('includes/template', $viewdata);
                    }
  • 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-05-26T23:18:53+00:00Added an answer on May 26, 2026 at 11:18 pm

    You could simply return the array of values on success, or FALSE on failure:

    $insert = $this->db->insert('members', $new_member_insert_data);
    if ($insert) {
        return $new_member_insert_data; // Same data
    }
    else {
        return FALSE;
    }
    

    …but it doesn’t really make sense, as you must be passing something to the model’s method in order for it to be useful (or have access to some of these values beforehand, your given code is incomplete). Also, it can be confusing returning different data types and usually a bad idea.

    Despite not having access to your full code here, I think the safest and most accurate way may be running another query after the INSERT runs. For instance, looking up the user by email_address (assuming it’s supposed to be unique).

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

Sidebar

Related Questions

In the process of creating a user interface code from UI file Qt creates
I am in the process of creating a custom registration form for WordPress. My
I am in process of creating a software for dumping plain text of whatever
Suppose that a process is creating a mutex in shared memory and locking it
I am in the process of creating an iPhone app that requires to interact
I'm in the process of creating a coverflow view for android, but I'm running
I am in the process of creating an app, and one of the pieces
I am in the process of creating a site that i would like to
I'm in the process of creating a metasearch engine and I'm stuck! Using php
I'm in the process of creating a web service that uses XML to handle

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.