Quote:
Originally posted by Rolodex
If what you added in this thread is the SQL error message you got then I can tell you that the 12 values you're trying to enter into the database doesn't match with amount of 13 tables you're trying to add the data to.
13 tables ... 12 Values
|
Thanks for the push in the right direction, Rolodex. I've got it working now.
Now onto the next problem...
Nothing "major", but the paperclip.gif image is not appearing next to the PM title.
Here's what I have in Private.php:
PHP Code:
if (intval($privatemessage['attachmentid'])!=0) {
$attach = '<img src="{images folder}/paperclip.gif" border="0" align="absmiddle">';
} else {
$attach = ' ';
}
What am I missing?? (space in "{images folder}" added for example)