prefix . ‘Seed_membership’; // Replace ‘seed_membership’ with your table name
// Prepare the data to be inserted
$data = array(
‘organization_name’ => $organization_name,
‘membership_type’ => $membership_type,
‘city’ => $city,
‘country’ => $country,
‘address’ => $address,
‘contact_person’ => $contact_person,
’email’ => $email,
‘telephone’ => $telephone,
‘website’ => $website,
‘products’ => $products,
‘date’ => current_time(‘mysql’),
);
// Insert the data
$wpdb->insert($table_name, $data);
}
}