Version: 4.3.0, by bananalive
Developer Last Online: Nov 2023
Category: New Posting Features -
Version: 4.0.x
Rating:
Released: 01-27-2010
Last Update: 10-04-2011
Installs: 1410
DB Changes Uses Plugins Auto-Templates
Additional Files Translations
No support by the author.
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)
Screenshots
There are two posts full of screenshots of this modification
Upload the contents of upload folder to forum root (Allow Overwrite "YES" for overwrite) clientscript\easyforms.css -> \clientscript\
clientscript\easyforms.js -> \clientscript\
I have tried installing this mod by following the instructions, but when I try to go to the form page (http://memphisroar.com/forum/forms.php?do=forms), I get a 404/page not found error. What doofus mistake did I make? LOL
I still absolutely love this mod, and it's helped me greatly.
My forms get sent to an e-mail address, and I'd like the reply to go to the user who submitted it (their e-mail address).
Earlier bananalive responded about a plugin and hook:
and to use this...
$uheaders .= 'Reply-To: = email@domain' . "\r\n";
I'm actually looking for the code to replace email@domain with the email address of the user who submitted the form if possible. I've tried a few variations and failed unfortunately.
Thank you very much Bananalive for the multi-select code!
I found if I use more than one custom question with this code, the extra questions show up as double drop downs side by side instead of just one drop down each.
PHP Code:
$answer .= '<select name="'.$formbit[id].'[]" multiple="multiple" size="4">'; $answer .= '<option></option>'; $thisanswer = explode(',',$qo[$formbit[id]]); $members = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "user WHERE membergroupids LIKE \"%17%\" ORDER BY username ASC"); while($row = $db->fetch_array($members)) { $answer .= '<option value="'.$row[username].'"'; if (in_array($row[username], $thisanswer)) { $answer .= 'selected="selected"'; } $answer .= '>'.$row[username].'</option>'; } $answer .= '</select>';
Use following code..
(first line changed .= to =)
PHP Code:
$answer = '<select name="'.$formbit[id].'[]" multiple="multiple" size="4">'; $answer .= '<option></option>'; $thisanswer = explode(',',$qo[$formbit[id]]); $members = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "user WHERE membergroupids LIKE \"%17%\" ORDER BY username ASC"); while($row = $db->fetch_array($members)) { $answer .= '<option value="'.$row[username].'"'; if (in_array($row[username], $thisanswer)) { $answer .= 'selected="selected"'; } $answer .= '>'.$row[username].'</option>'; } $answer .= '</select>';
Can anyone confirm this great mod as working flawlessly on 4.1.10 please?
I cant. Have it all installed and I still cant even access the page to build the form. Which should be noted isnt even listed on this mods description. You currently have to search around page 30 or so with the information pointing to the older version which does list it. however I digress, as an administrator this mod says I dont have permission to use it. Sooo... until I see otherwise. No good.