I try to make some modification for example when asking a question to add a new selectable field .... and I arrived to this strange query
qa_db_query_sub($db,
'INSERT INTO ^posts (type, parentid, userid, cookieid, title, content, tags, notify, created) VALUES ($, #, $, #, $, $, $, $, NOW())',
$type, $parentid, $userid, $cookieid, $title, $content, $tagstring, $notify
);
what $ and # mean...
and where I need to add that field... in this query.. let say
qa_db_query_sub($db,
'INSERT INTO ^posts (type, parentid, userid, cookieid, title, content, MYFIELD, tags, notify, created) VALUES ($, #, $, #, $, $, $, $, $, NOW())',
$type, $parentid, $userid, $cookieid, $title, $content, $MYFIELD, $tagstring, $notify
);
AND PAGE qa_page_ask ?