Quote:
Originally Posted by sabret00the
hmm that's not a bad idea, will it only work for the pm query or willit work for all of em?
also how would i generate the pmtextid's?
|
like that (i didnt read your code till the end - sorry)
PHP Code:
$pmtextid = $DB_site->insert_id();
$DB_site->query("INSERT INTO " . TABLE_PREFIX . "pm (pmtextid,userid, folderid, messageread) VALUES ('$pmtextid', '$userid', '0','0')");
//dont forget to update user pms count
$DB_site->query("
UPDATE " . TABLE_PREFIX . "user
SET pmunread = pmunread+1, pmtotal = pmtotal+1
WHERE userid ='$userid'
");
this is the code i used on my hack,
works like charm