Sekundę o co tu chodzi? Tworzysz takie kody, a wstawiania nie zrobisz? Wyjaśnij, bo Ty tu nie szukasz porady, a wyręczenia.
Dałeś szablon i kod z poprzedniego tematu - fajnie, ale nijak się on ma do tworzenia.
Dodawanie wpisu do bazy - jaki to typ jaki chcesz dodać? Cokolwiek w tym temacie masz wiedzę? Ogólne dodawanie do bazy podejrzysz w system/Db/Db.php:
/**
* Run INSERT statement and return insert ID
*
* @see <a href='http://dev.mysql.com/doc/refman/5.1/en/insert.html'>INSERT Syntax</a>
* @param string $table Table name
* @param array|\IPS\Db\Select $set Values to insert or array of values to set for multiple rows (NB, if providing multiple rows, they MUST all contain the same columns) or a statement to do INSERT INTO SELECT FROM
* @param bool $odkUpdate Append an ON DUPLICATE KEY UPDATE clause to the query. Similar to the replace() method but updates if a record is found, instead of delete and reinsert.
* @param bool $ignoreErrors Ignore errors?
* @see replace
* @return int
* @throws \IPS\Db\Exception
*/
public function insert( $table, $set, $odkUpdate=FALSE, $ignoreErrors=FALSE )
{