Quote:
Originally Posted by Erwin
If you don't modify the number of questions, you can use the same templates.
If you want to start changing the type and number of questions, you need to copy and rename the template, and change the template name in form.php - keep doing that for new forms, only if you modify those things.
It's not hard too work out - I've made this hack to be customizable - go forth and change it however you like.
|
OK, I got that resolved. I currently have the form at
http://www.dungeonkeepersdomain.com/...st_a_forum.php set so anybody can use it. It is ustilizing the the "form_request_a_forum" template and "formanswers_request_a_forum" answers template. When I fill out the form, it still says "you need to answer every question!".
I DID ANSWER EVERY QUESTION.
My "form_request_a_forum" template looks like this.
Code:
$stylevar[htmldoctype]
<html id="form" dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] - $formtitle</title>
$headinclude
</head>
<body>
$header
$navbar
<br>
<form enctype="multipart/form-data" method="post" action="$phpfilename">
<input type="hidden" value="$userid" name="userid">
<input type="hidden" value="submit" name="action">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="3">
$vboptions[bbtitle] - $formtitle
</td>
</tr>
<tr>
<td class="panelsurround" align="center" colspan="3">
<table class="panel" cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td align="$stylevar[left]">
<fieldset class="fieldset" style="margin:0px">
<table bgcolor="#FFFFFF" cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td>
<font color="#000000">$formpurpose</font>
</td>
</tr>
</table>
</fieldset>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="alt2" valign="middle" width="60%">
<b>Your Username</b>:</td>
<td class="alt2" valign="middle" colspan="2" width="40%">
<b>$bbuserinfo[username]</b>
</td>
</tr>
<tr>
<td class="alt2" valign="middle" width="60%">
<b>$normalquestion1</b><br>
<font face="verdana" size="1">$explain1</font>
</td>
<td class="alt2" valign="middle" colspan="2" width="40%">
<input type="text" size="30" name="normalanswer1">
</td>
</tr>
<tr>
<td class="alt2" valign="middle" width="60%">
<b>$normalquestion2</b><br>
<font face="verdana" size="1">$explain2</font>
</td>
<td class="alt2" valign="middle" colspan="2" width="40%">
<input type="text" size="30" name="normalanswer2">
</td>
</tr>
<tr>
<td class="alt2" valign="middle" width="60%">
<b>$normalquestion3</b><br>
<font face="verdana" size="1">$explain3</font>
</td>
<td class="alt2" valign="middle" colspan="2" width="40%">
<input type="text" size="30" name="normalanswer3">
</td>
</tr>
<tr>
<td class="alt2" valign="middle" width="60%">
<b>$normalquestion4</b><br>
<font face="verdana" size="1">$explain4</font>
</td>
<td class="alt2" valign="middle" colspan="2" width="40%">
<input type="text" size="30" name="normalanswer4">
</td>
</tr>
<tr>
<td class="alt2" valign="middle" width="60%">
<b>$normalquestion5</b><br>
<font face="verdana" size="1">$explain5</font>
</td>
<td class="alt2" valign="middle" colspan="2" width="40%">
<input type="text" size="30" name="normalanswer5">
</td>
</tr>
<tr>
<td colspan="3" class="alt2" valign="middle">
<b>$longquestion6</b><br>
<font face="verdana" size="1">$longexplain6</font><br>
<textarea rows="5" cols="60" name="longanswer6" wrap="VIRTUAL" maxlength="225"></textarea>
</td>
</tr>
<tr>
<td colspan="3" class="alt2" valign="middle">
<b>$longquestion7</b><br>
<font face="verdana" size="1">$longexplain7</font><br>
<textarea rows="5" cols="60" name="longanswer7" wrap="VIRTUAL" maxlength="225"></textarea>
</td>
</tr>
<tr>
<td valign="top">
<p align="center">
<input type="submit" value="Submit" name="submit" style="font-family: Verdana; font-size: 10pt" class="button">
<input type="reset" value="Reset" name="reset" style="font-family: Verdana; font-size: 10pt" class="button">
</p></td></tr>
</table>
</td>
</tr>
</table>
</form>
$footer
</body>
</html>
And my "formanswers_request_a_forum" template looks like this.
Code:
$formtitle
$bbuserinfo[username]
-----------------------------------------------------
$normalquestion1
$normalanswer1
-----------------------------------------------------
$normalquestion2
$normalanswer2
-----------------------------------------------------
$normalquestion3
$normalanswer3
-----------------------------------------------------
$normalquestion4
$normalanswer4
-----------------------------------------------------
$normalquestion5
$normalanswer5
-----------------------------------------------------
$longquestion6
$longanswer6
------------------------------------------------------
$longquestion7
$longanswer7
------------------------------------------------------
It works perfectly if I do not force all the questions to be answerws.
What am I doing wrong?