56 lines
1.2 KiB
PHP
Executable File

<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Import_model extends CI_Model {
function insertData($data) {
$this->db->insert_batch('student', $data);
}
function dataEntry($data, $tablename) {
$this->db->insert($tablename, $data);
}
function getTable($data) {
$query = $this->db->list_fields($data);
return $query;
}
/* function headerExist($data, $table) {
foreach ($data as $data) {
if ($this->db->field_exists($data, $table)) {
$booleanValue[] = 'true';
} else {
$booleanValue[] = 'false';
}
}
if (array_search('false', $booleanValue)) {
return FALSE;
} else {
return TRUE;
}
}
*/
function headerExist($data, $table) {
foreach ($data as $data1) {
if ($this->db->field_exists($data1, $table) || $this->db->field_exists($data1, 'users')) {
$booleanValue[] = 'true';
} else {
$booleanValue[] = 'false';
}
}
if (array_search('false', $booleanValue)) {
return FALSE;
} else {
return TRUE;
}
}
}
?>