I got working is inserting data in to module_MediaCenter_category, that fine. I want to uplate the id in module_MediaCenter_category.sql and not working.

Can any help and I am new to php and mysql.
Cheers
Andrew
Code: Select all
new_cat_id = $db->GenID(cms_db_prefix() . "MediaCenter_category_seq");
$catview = '0';
$catname = 'Main Videos';
$catalias = 'mainvideos';
$catactive = '1';
$query = "INSERT INTO " . cms_db_prefix() ."module_MediaCenter_category (id, viewed, modified, created, name, alias, active )
VALUES (?, ?, ?, ?, ?, ?, ?)";
# add the Data
$result = $db->Execute($query, array($new_cat_id, $catview , $db->DBTimeStamp(time()), $db->DBTimeStamp(time()),$catname,$catalias,$catactive));