
07-21-2004, 10:04 PM
|
 |
|
|
Join Date: May 2002
Location: Van Nuys, CA
Posts: 713
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by WAR
you need to change the conditional in the PHP file where it checks to see if all questions have been answered to match your new format.
I don't have the files where i can look at them right now, but the line you are looking for is marked with a comment, it is a long string of if ($variable1 == "" OR $variable2 == "" OR etc...
You need to change all of the previously used variable names into the variable names you are using now:
$normalanswer1
$normalanswer2
$normalanswer3
$normalanswer4
$normalanswer5
$longanswer6
$longanswer7
If that isn't clear enough, I will post the specific line you need to change later when I get back home
|
OK, it looks like this.
Code:
globalize($_POST, array(
'normalanswer1' => STR,
'normalanswer2' => STR,
'normalanswer3' => STR,
'normalanswer4' => STR,
'normalanswer5' => STR,
'longanswer6' => STR,
'longanswer7' => STR,
'action' => STR
));
Still does not work
|