Quote:
Originally Posted by Vivi Ornitier
here is email.php
|
Code:
$DB_site->query("INSERT INTO pmtext
(fromuserid, fromusername, title, message, touserarray, iconid, dateline, showsignature, allowsmilie
)
VALUES
($bbuserinfo[userid], '" . addslashes($bbuserinfo[username]) . "', '$_POST[subject]', '" . addslashes($sendmessage) . "', '" . serialize(array($user[userid] => addslashes($user['username']))) . "', 0, " . TIMENOW . ", 0, 0)"
You forgot the ); at the end , it should be
Code:
$DB_site->query("INSERT INTO pmtext
(fromuserid, fromusername, title, message, touserarray, iconid, dateline, showsignature, allowsmilie
)
VALUES
($bbuserinfo[userid], '" . addslashes($bbuserinfo[username]) . "', '$_POST[subject]', '" . addslashes($sendmessage) . "', '" . serialize(array($user[userid] => addslashes($user['username']))) . "', 0, " . TIMENOW . ", 0, 0)");