> I can add them to the url, but then I still can't access the variables
> in PHP via $_POST.

Ryan and Barry have shown you how to pass them via the query string.

If  you  want  everything  to POST (which I think is a better design),
switch  to  using  Form.Request  and  you  have the `extraData` option
built-in:

new Form.Request(document.id('form_id'), document.id('result_area_id'), {
    extraData: { 
        forum_id: intForumId,
        topic_id: intTopicId,
        message_id: intMessageId
    }
});

-- Sandy

Reply via email to