Easily create forms with no HTML or PHP knowledge. Questions can be made compulsory and are checked before the form is submitted. Forms can be previewed. (You can create multiple forms)
Got a question though: I'm trying to make a contest registration form thats e-mailed on submit.
When the E-mail arrives it looks like this:
MASTER O WAR TOURNAMENTWhat is your game name? PHOENIX What is your E-mail Address? yourname@email.net Are you a Clan Admin? Yes If Clan Admin, are you Registering your clan Or a small unit? Bulldog, nerdboy
How can I fix this to look like this:
MASTER O WAR TOURNAMENT:
What is your game name? PHOENIX
What is your E-mail Address? yourname@email.net
Are you a Clan Admin? Yes
If Clan Admin, are you Registering your clan Or a small unit? Yes
Bulldog, nerdboy
Any help would be great!!
You have to use the custom form output, here's mine, it displays something like you want:
Got a question though: I'm trying to make a contest registration form thats e-mailed on submit.
When the E-mail arrives it looks like this:
MASTER O WAR TOURNAMENTWhat is your game name? PHOENIX What is your E-mail Address? yourname@email.net Are you a Clan Admin? Yes If Clan Admin, are you Registering your clan Or a small unit? Bulldog, nerdboy
How can I fix this to look like this:
MASTER O WAR TOURNAMENT:
What is your game name? PHOENIX
What is your E-mail Address? yourname@email.net
Are you a Clan Admin? Yes
If Clan Admin, are you Registering your clan Or a small unit? Yes
Bulldog, nerdboy
First - Thank you for a great application and your support in helping people modify.
With that I have a question.
I have created one form to help members trade items. They fill out the form and it posts to a thread. I have been asked to have a button in someones post where if it is clicked, you would go to the form and that persons name would be in the form already.
I have it now as {username} / $qo1 (or whatever the variable is) so when the form is filled out that information is the thread title - example if I filled out the form would be 'Me / Name of person i type in box"
Is it possible to somehow carry the username of the persons post I am in so that $qo1 spot automaticly fills in so I would not have to type the persons name when a link from that post is clicked and you are taken to the form?
I hope im clear on what im asking - thank you in advance for your help.
This requires EasyForms v3.3
Add this into postbit template somewhere (or postbit_legacy)
HTML Code:
<a href="misc.php?do=form&fid=2&username=$post[username]">Trade with $post[username]</a>
Import attached file.
form Hook: Form start
PHP Code:
$hiddenfield1 = $vbulletin->input->clean_gpc('g', 'username', TYPE_NOHTML); if (empty($hiddenfield1)) { $errormessage = "Error, this form needs a username."; eval('print_output("' . fetch_template('STANDARD_ERROR') . '");'); }
Many thanks for the mod - it's exactly what I need :up:
How can I show the individual results of all submitted form replies to the relevant forum members in easy viewable format?
Something like this (in table format):
Number Name City Reply
1. John London Yes
2. Lloyd Paris No
ect.
Thanks again!
I have reviewed all the material and postings and didn't find any explanation of how to order the results from the form.
Say it's a form to invite people to an event and then afterwards people want to see who is going with their relevant contact details that they completed in the form and also see their names on the list. Or it's a survey and people want to see the results of the survey in worksheet format so they can analyse them... How can this be done?
thank you for the info - im going to give it a try
I installed this on a second board - and all is working great (VB 3.8.1 and Easyforms 3.3) but if logged in as a ergular user I cannot upload an attachments...I can do it as an admin so I know it works but im drawing a blank as to why another group cannot do it....
Usergroup permission for attachments set to Yes - that usergroup can add attachments in regular posts but just not the form...any ideas where im not looking?
When the member clicks the link how can I make it so the form shows the name of the person the member is going to trade with....I just would like it so the person can see something like 'Trading With: that members name' - I dont want there to be confusion when they are filling out the form now knowing if they have the right name.
****** Scratch this one - I got all to work but im just tinkering with it to figure out how to get the {parm} into the thread title
Ok I tried and I cannot figure out how to get that hiddenvalue into the thread title - the {param} varible works in the form itself but not in the thread title
if ($form[submitmessage])
{
$errormessage = $form[submitmessage];
}
else
{
$errormessage = "Form was submitted successfully. Click <a href="showthread.php?" . $vbulletin->session->vars['sessionurl'] . "p=" . $postinfo[postid] . "#post" . $postinfo[postid] . "">here</a> to view the post.";
}
}
Replace 245 with appropriate postid
Use custom output e.g.
Code:
$qo[75] | $thisuser[username] | $qo[59]
I get to this page when I tried making these updates:
Quote:
Fatal error: Existing data passed is not an array
Called set_existing in [path]/misc.php(100) : eval()'d code(1039) : eval()'d code on line 9
Called eval in [path]/misc.php(100) : eval()'d code on line 1039
Called eval in [path]/misc.php on line 100
in [path]/includes/class_dm.php on line 235
#0 vb_error_handler(256, Existing data passed is not an array
Called set_existing in /var/www/vhtdocs/userweb61076/html/forum/misc.php(100) : eval()'d code(1039) : eval()'d code on line 9
Called eval in /var/www/vhtdocs/userweb61076/html/forum/misc.php(100) : eval()'d code on line 1039
Called eval in /var/www/vhtdocs/userweb61076/html/forum/misc.php on line 100
, /var/www/vhtdocs/userweb61076/html/forum/includes/class_dm.php, 235, Array ([existing] => ,[line] =>
Called set_existing in /var/www/vhtdocs/userweb61076/html/forum/misc.php(100) : eval()'d code(1039) : eval()'d code on line 9
Called eval in /var/www/vhtdocs/userweb61076/html/forum/misc.php(100) : eval()'d code on line 1039
Called eval in /var/www/vhtdocs/userweb61076/html/forum/misc.php on line 100
....