Мой php-код в Codeigniter для вставки новой записи
Код: Выделить всё
$commentData = array(
'comment'=>$message,
'docid'=>$_GET['id'],
'username'=>$owner,
'commenter'=>$currentUser,
//here i need to add my new date entry
);
$this->showSearchResult_model->addComment($commentData);
Код: Выделить всё
$this->db->insert('comment', $comment);
Подробнее здесь: https://stackoverflow.com/questions/190 ... ase-in-php
Мобильная версия