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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T10:54:59+00:00 2026-05-31T10:54:59+00:00

I have the following php array that gets all values from a form full

  • 0

I have the following php array that gets all values from a form full of radios and check-boxes.

foreach(array('buss_type','anotherfield','anotherfield','...etc') as $index)
{
    if (isset($this->request->post[$index])) {
        $this->data[$index] = $this->request->post[$index];
    } else { 
        $this->data[$index] = NULL; 
    }
}

Now, I am wondering how to write the query to send those values to my database, to a new table I just created (retailer). Every radio/checkform value has its column in my retailer table, how do I write the query so that all the values contained in $index go to their specific column.

The following is an example of how my other queries look like…

public function addCustomer($data) {
    //this is the one I am trying to write, and this one works, 
    //but I'd have to add every single checkbox/radio name to the 
    //query, and I have 30!
    $this->db->query("INSERT INTO " . DB_PREFIX . "retailer SET buss_t = '" . 
            (isset($data['buss_t']) ? (int)$data['buss_t'] : 0) . 
            "', store_sft = '" . 
            (isset($data['store_sft']) ? (int)$data['store_sft'] : 0) . 
        "'");
    //Ends Here
    $this->db->query("INSERT INTO " . DB_PREFIX . "customer SET store_id = '" . 
            (int)$this->config->get('config_store_id') . "', firstname = '" . 
            $this->db->escape($data['firstname']) . "', lastname = '" . 
            $this->db->escape($data['lastname']) . "', email = '" . 
            $this->db->escape($data['email']) . "', telephone = '" . 
            $this->db->escape($data['telephone']) . "', fax = '" . 
            $this->db->escape($data['fax']) . "', password = '" . 
            $this->db->escape(md5($data['password'])) . "', newsletter = '" . 
            (isset($data['newsletter']) ? (int)$data['newsletter'] : 0) . 
            "', customer_group_id = '" . 
            (int)$this->config->get('config_customer_group_id') . 
            "', status = '1', date_added = NOW()");

Thanks a lot for any insight you can provide.

  • 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-31T10:55:01+00:00Added an answer on May 31, 2026 at 10:55 am

    the best way would be to create a function that accepts an array and table name as an argument and executes a insert query.

    function insertArray($table, $array)
    {
      $keys =""; $values = "";
      foreach($table as $k=>$v)
      { 
          $keys.=($keys != "" ? ",":"").$k:
          $values .=($values != "" ? "," :"")."'".$v."'";
      }
      $this->db->query("INSERT INTO ".$table." (".$keys.") VALUES (".$values.");
    }
    

    The array has to be structured like this:

     array("db_attribute1"=>"value1","db_attribute2"=>"value2");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following php loop that takes an array that contains a set
I'm writing a simple php/mysql script that gets all ads I have in my
I have the following PHP code: $required_fields = array ('menu_name','visible','position'); foreach($required_fields as $fieldname) {
I have the following PHP in my contact form. // Ensure a message was
I have the following PHP code which works out the possible combinations from a
I have the following PHP function which will list the users from a MySql
All, I have the following JSON Request that comes through a function call in
I have an array I'm trying to asort using php. The problem is that
I am new to PHP. I have a PHP array that is two dimensional.
Lets say I have the following two PHP arrays that contain integers: $foo =

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.