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\
updated the prodcut. thank you again. this mod is one of the most used feature on my board. we process a lot of orders and this is a lifesaver. thank you thank you thank you again.
Hello Bananalive,
I tried to add a custom question but I got a display error, i.e. what ever is written in the custom question will be displayed in the very top of the page, before the logo.
Actually, what am I trying to do is to add a dependent drop down list that is for the advertisement request period. For example, the first drop down would be the Period [Weeks, Months] and the second list would be the Length [1, 2, 3, 4] where the second one is dependent on the first one.
How can I have a question which uses a query?
The following example gets a list of threads in the forumid 10.
1. Create 'Custom' question
2. Use following php Code:
PHP Code:
$answer = '<select name="'.$formbit[id].'">';
$answer .= '<option></option>';
$thisanswer = $q[$formbit[id]];
$threads = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "thread
WHERE forumid = '10'
ORDER BY title ASC");
while($row = $db->fetch_array($threads)) {
$answer .= '<option value="'.$row[threadid].'"';
if ($row[threadid] == $thisanswer) {
$answer .= 'selected="selected"';
}
$answer .= '>'.$row[title].'</option>';
}
$answer .= '</select>';
Quote:
Originally Posted by Firas S.
Hello Bananalive,
I tried to add a custom question but I got a display error, i.e. what ever is written in the custom question will be displayed in the very top of the page, before the logo.
Actually, what am I trying to do is to add a dependent drop down list that is for the advertisement request period. For example, the first drop down would be the Period [Weeks, Months] and the second list would be the Length [1, 2, 3, 4] where the second one is dependent on the first one.
I've found that using checkboxes or radiobuttons with the 'Options per row' set to 2, isn't actually putting the 2 options on a row. It's still displaying each option on it's own row. Just letting you know for the Beta.