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\
but as I mentioned in the other thread, that won't really be right bcause it won't have any values. I think it may be that your button needs to submit a form with some hidden data. Although it could also be a bug that was never noticed before because warnings were suppressed.
I see that you posted in the Paid Services forum, that may be the best idea after all.
and want to do select a specific time (like 24 hourse) so that member would be able to re- fill the form again, can i do it by ip members and guest too
This is not built into this mod that I know of so what you are looking at wanting would need to be specially coded from a PHP coder.
but as I mentioned in the other thread, that won't really be right bcause it won't have any values. I think it may be that your button needs to submit a form with some hidden data. Although it could also be a bug that was never noticed before because warnings were suppressed.
I see that you posted in the Paid Services forum, that may be the best idea after all.
Yeah, that was a typo, it should have been parens and not square brackets. Anyway, glad you got it figured out.
Ah ok yeah me too. When I put it in with the brackets I still had an error, but I looked in the code of the file and noticed that after almost every array it was () so figured I had nothing to lose. The worse it would do is crash things and I could just change it right back and get it back lol.
Ah ok yeah me too. When I put it in with the brackets I still had an error, but I looked in the code of the file and noticed that after almost every array it was () so figured I had nothing to lose. The worse it would do is crash things and I could just change it right back and get it back lol.
Thanks for the solution. just to be on the right track. you replace this with your code:
Thanks for the solution. just to be on the right track. you replace this with your code:
Code:
$formbit['value'] = $q[$formbit[id]];
replace with this:
Code:
$q = array();
Actually it was supposed to go before the 'while' statement which is a few lines above line 1242. But I'm thinking that you might be able to just comment out line 1242 (the one you posted), because of course an empty array isn't going to set any value.