> but is there a way to prevent it from getting into the DB at all?
AFAIK not. This would require a modification of build_new_post().
> $post[postid] is supposed to be $post['postid'] (quotes) correct?
You can ommit the quotes.
> Also, $DB_site->query is just vB's way of doing $result = mysql_query($sql, $connection); right?
Yes. vB uses a class (DB_sql_vb) the wraps mysql_ functions and thus makes database-handling easier.
|