1
2
3
4
5
6
7
8
9
10
|
public function insertData( $table , $data ){
$field =implode( ',' , array_keys ( $data ));
foreach ( array_values ( $data ) as $key => $val ){
$value .= "'" . $val . "'" ;
if ( $key < count ( $data )-1)
$value .= "," ;
}
$sql = "INSERT INTO " . $table . "(" . $field . ") values(" . $value . ")" ;
return $this ->insert( $sql );
}
|