Quote:
Originally Posted by nano_9219
someone can explain me how i could redirect my form, depending of radio-button elected in a question? Vbulletin 4.2 with easy forms 4.3
|
Hi,
add a php-hook in "before submit" and paste this
Code:
if ($qo[*QUESTION ID*] == '*ANSWER*') {sleep(0); header("Location:http://*LINK*"); exit;}
elseif ($qo[*QUESTION ID*] == '*ANSWER*') {sleep(0); header("Location:http://*LINK*"); exit;}
else ($qo[*QUESTION ID*] == '*ANSWER*') {sleep(0); header("Location:http://*LINK*"); exit;}
For each answer you have to make an
elseif for the last only one
else . The things that you have to edit yourself are standing in the ...
**
regards
ps: srry for my bad english :P