Thanks for the help, I got it to work.
I thought I'd just post this for future reference:
Heres how I got 2 forms to work on the same board:
Copied the file and renamed it
Edit the line in the hack
PHP Code:
<product productid="form_hack" title="Form Hack"
Changing the product id (keep lower case and use a underscore if you want more than one word)
Change the title - Makes your life easier when you have more than one form
Find:
PHP Code:
<plugins>
<plugin active="1">
<title>Form Hack</title>
<hookname>newthread_start</hookname>
<phpcode><![CDATA[// Name of this form
$formname = "form";
if ($_REQUEST['do'] == $formname)
change formname to something else eg
PHP Code:
$formname = "anotherform";
After you've imported the product, you should then be able to find your form at:
http://www.yourboard.com/forum/newth...do=anotherform (or whatever your formname is)