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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:04:49+00:00 2026-06-18T05:04:49+00:00

I have a User class and I’m wondering what would be the most recommended

  • 0

I have a User class and I’m wondering what would be the “most recommended” way to handle insertions?

Option 1: Use an existing object

// insert a new user and return the user id
public function insert() {
    $sql = "INSERT INTO users (username, password, email, avatar, subscribe, created, last_login, valid) VALUES
                              (?, ?, ?, ?, ?, ?, ?, ?)";
    $sth = $this->db->prepare($sql);
    $sth->bindParam(1, $this->username, PDO::PARAM_STR);
    $sth->bindParam(2, $this->password, PDO::PARAM_STR);
    $sth->bindParam(3, $this->email, PDO::PARAM_STR);
    $sth->bindParam(4, $this->avatar, PDO::PARAM_STR);
    $sth->bindParam(5, $this->subscribe, PDO::PARAM_STR);
    $sth->bindParam(6, $this->created, PDO::PARAM_STR);
    $sth->bindParam(7, $this->last_login, PDO::PARAM_STR);
    $sth->bindParam(8, $this->valid, PDO::PARAM_STR);
    $sth->execute();

    return $this->db->lastInsertId();
}

Option 2: Pass the information in as an array

// insert a new user and return the user id
public function insert(array $fields = array()) {
    if(!empty($fields)) {
        $sql = "INSERT INTO users (username, password, email, avatar, subscribe, created, last_login, valid) VALUES
                                  (:username, :password, :email, :avatar, :subscribe, :created, :last_login, :valid)";
        $sth = $this->db->prepare($sql);
        $sth->execute($fields);

        return $this->db->lastInsertId();
    }
}

Another option? Does it make any difference?

  • 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-18T05:04:50+00:00Added an answer on June 18, 2026 at 5:04 am

    Both ways are okay but personally I suggest second option

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

Sidebar

Related Questions

I have a User object with this structure: class User { private String id;
I use JPA with Hibernate. I have a User class and a Flag class
I use Grails 2.0.0.RC2 and I have an User class like this: class User
I have a user object like so: public class User { public Guid UserId
I have a user class that I need to use my database with. To
I have a user class that I use through the iPhone application, this is
i have a User class with a field for the e-mail-address and a password.
Alright so here is the question. I have a user class which contains a
I have a User and School Class, public class User { private Long id;
I have a user and nested profile class as follows: class User < ActiveRecord::Base

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.