1032 comments found.
Hi,
I am built a very complex form with conditional logic, but the {table} replacement can not be formated in a customized way. Is there a posibilty to define a conditional logic in a custom template like twig?
{% if user-email %}
E-Mail: {user-email}
{% endif %}Anoter way is phtml or php as template
or is it possible to include an other mailer plugin for a more complex form?
Thanx Joe
Hi Joe,
Thanks for purchase.
Here’s how I’d deal with this:
In the sendMail() doc you can see that the values are transmitted with $options['values'].
Default is $_POST
So you can use this kind of logic:
$values = $_POST;
if ($_POST['this'] !== 'that') {
unset($_POST['thing']);
}
$options = array(
// ...,
'values' => $values,
// ...,
);
If you need anything else you’re welcome,
Gilles
I currently own 1 license. Was wondering if you would allow me to upgrade it to an extended license. Of course at a cost but was wondering what that might be since I already own one.
Hi Fivestarboiler,
There’s no way to upgrade, it’s not possible on Codecanyon. If I can do anything else for you feel free to contact me,
Gilles
Hi, Am a little bit confused here. Am i to install it on my wordpress site or to install it directly on my server side. Because am still unable to install the script. I have uploaded the phpformbuilder folder on my server. When i try pointing at the folder via my web browser, it shows Thank you for purchasing PHP Form Builder PHP Form Generator Class – Save tons of programming hours….. the link is http://divlineapps.tech/fbuilder/ where you have the phpformbuilder folder uploaded.
My question is how do i install this script on my server side.
Thanks as i await your prompt response.
Hi Musombi,
Thanks for purchase.
All is explained here, please read the instructions. It explains exactly what you must upload on your server, then how to build your formshttps://www.phpformbuilder.pro/documentation/quick-start-guide.php
Then if you have more specific questions I’m available for help
Gilles
Thank you for your response. I did everything as stated on the guide… but when you try visiting the phpformbuilder folder, it shows list of files. when you select form, it shows a blank page. Kindly advise further. Thanks
Please search on the website, all’s explained again:
https://www.phpformbuilder.pro/documentation/help-center.php#white-pageI’m trying to an application that require adding product to cart,is there any documentation to help me achieve that purpose or can you help how to create an add to cart with tab on my website
Hi,
I’m sorry I can’t accept custom works these days, even if paid.
You have to setup your database, register your values, etc.
Here’s the documentation for the MySQL wrapper class: https://www.phpformbuilder.pro/documentation/class-doc.php#database-main
If you prefer to use any other way to make your queries (PDO, ...) there’s no restriction at all, it’s just PHP.
Thanks for your understanding,
Gilles
Hello, Its Shows Below Error Message, i used same server only (sparrowcreatives.in). i uploaded wrong destination so i deleted form builder folder.
Unfortunately, installation failed because of this reason: The maximum number of allowed PHP Form Builder installations (2 installation(s) total) reached
Hi,
Thanks for purchase. I answered your email, you can reinstall now.
Gilles
Good Morning, How can I translate the forms into another language?
Hi,
Thanks for purchase.
You can use any language for your field names, etc.
Each plugin has multilanguage settings available, you just have to read the plugins documentation here: https://www.phpformbuilder.pro/documentation/jquery-plugins.php
hi, I just bought the script and It didn’t work always ERROR 500.. even template etc… I’m not good on php … I thought it was a easy to use script… it is possible to get refund ? I can’t use it .. it’s too complicated !
I drag and drop form, copy past the full page html, but no work
Hi,
Thanks for purchase.
Hey, don’t ask for refund without asking for help first!
Please if possible send me your ftp & url and I’ll see what happens.
About error 500: https://www.phpformbuilder.pro/documentation/help-center.php#white-page
I’m also available on chat at https://www.phpformbuilder.pro, I can help you with screensharing if you want
Gilles
PS: I just saw that you’re French – so do I.
If you email me I can send you my phone number
Hello,
1- can i build multistep forms with this?
2- Is this compatible with elementor?
best regards
Hi,
1. Here are some examples with code: https://www.phpformbuilder.pro/templates/bootstrap-4-forms/customer-satisfaction-step-form.php https://www.phpformbuilder.pro/templates/bootstrap-4-forms/simple-step-form.php2. Not at all, please read the documentation before buying
If you need anything else you’re welcome,
Gilles
Ok
Can i use the forms generated with a bootstrap website generated with mobirise? or in regular html templates?
or only works in CMS?
best regards
Hi,
Yes, you can load the forms in any html page with Ajax loading.
Hello. I just purchased your PHP Form Builder. Thought it would be much simpler than it is. I am not remotely technical enough to use this. What are your refund policies? My purchase code is 4feb922a-c0cf-4fd9-9fc4-7887c24c8f12.
Thank you. Victoria anchorinspectionseo
Hi Victoria,
Thanks for purchase.
Can I help you?
The drag & drop form builder can’t be much simpler, you just have to copy paste the generated code.
Please would you email me, send me your ftp & url and explain me in details what you want to do?
Gilles
Hi, I brought 2 licences one for prod and one for test server. I always hve a stong bug with radio button who not work on prod, and verification who not work on dev. Can you help me ?
10:08:12.029 bs3-co-form.min.js:24 Uncaught TypeError: Cannot read property ‘classList’ of null at bs3-co-feedback-form.min.js:24 at Array.forEach (<anonymous>) at xe (bs3-co-feedback-form.min.js:24) at bs3-co-feedback-form.min.js:24 at Array.forEach (<anonymous>) at Le (bs3-co-feedback-form.min.js:24) at Bootstrap3.value (bs3-co-feedback-form.min.js:24) at bs3-co-feedback-form.min.js:24 at Array.forEach (<anonymous>) at Bootstrap3.value (bs3-co-feedback-form.min.js:24)
And the BS3 display not correct on latest FF browser
OK FF issue solved now . Display better with your tips, but now nothing submit on your modified example.
All’s solved, the changes will be published on Codecanyon later.
Hello, I am finally getting around to working with your incredible product. I wanted to ask your opinion about MySQL driven select fields. I have a form with 6 fields that I am getting the select options from MySQL to ensure referential integrity.
My current form has all of the queries and results coded in the php section.
As I move to phpformbuilder, would it make more sense to have separate pages to pull the data from the various tables? Would this be done using Ajax and PDO?
Hi Emart53,
Thanks for purchase.
The MySQL class doesn’t use PDO, but uses Mysqli. I don’t see exactly what would be the benefit to get the data with Ajax instead of direct queries with PHP. Except maybe if your queries are very very complex and require some time to load the records?
Anyway, this can be done. If you want to load some fields with Ajax, build your form from the main page, and in the php file called with Ajax add the field(s) you want then call echo $form->html;
You can see example codes in the templates that use dynamic fields, for instance https://www.phpformbuilder.pro/templates/bootstrap-4-forms/dynamic-fields-form-1.php
If you need anything else you’re welcome,
Gilles
Uncaught ReferenceError: Component is not defined Uncaught ReferenceError: materialDateI18n is not defined
HI, I use the form builder to creat my form but have many html/css/javascrip bugs Dependent field now functional, and I have this 2 upper errors on chrome debuger.
Can you help ? I send you a message yesterday, but no answer.
Hi Supersoniquestudio,
Thanks for purchase.
I got your messages, don’t worry I’m working on this, I tested and got the same issue. I’ll send you some files to replace and will publish an update.
Thanks for reporting, you just have to wait a few hours.
Gilles
I have a production to launch tomorrow morning, sorry to bother you but I choose you lib to go faster.
Got error ‘PHP message: PHP Fatal error: Constant expression contains invalid operations in …/phpformbuilder/database/Mysql.php on line 21\n’.... => use ’’ instead ”” if your pass contain a $ 
PM me if you like do a live test of your updates
Another problem, data are not record in db, and ther is no error messag. How to debug ?
About the fatal error: your MySQL password contains a single quote, you must escape it with a backslash in phpformbuilder/database/db-connect.php, for instance define('DBPASS', 'xxx\'xxx');
Nothing is recorded in your db because the connection fails, due to the previous problem.
To debug you can show the queries on screen:// first send your query, then: echo $db->getLastSql();
Any news ?
How to switch error verification message in another language ? In general how to localise messages + make datapicker material in FR like your template from your website ?
Ok found for SQL, now it’s ok, juste the JS error to correct now 
I’m waitting your update (you said “wait a few hours”, hummm
)
Hi Mike,
I just sent you the 2 replacement files, please test & tell me
I test it and not solve the problem, plus others things
I send you a email
Hello, I intend to purchase the form builder, but want to know if:
1. Forms can be submitted to an email as PDF 2. Is the form data entered into a database
Hello Willolo,
Building PDF is not a native feature, but you can use a PHP library like mPDF. Then use the PHP Form Builder sendMail function to send your message with the attachment.
Here’s the documentation to build your queries and record the data in your database: https://www.phpformbuilder.pro/documentation/class-doc.php#database-main
If you need anything else you’re welcome,
Gilles
Please email me at taijidao@gmail.com to provide more info..
AJAX not working; browser does not parse it.
http://www.bergmanspecialty.com/contactus/index2.htmlHi,
Your form is working now, I answered your email with more details
Thank you!
You’re welcome
I am having trouble gettng AJAX working. I want to put the form in an html page not change it to .php. Thanks! Steven
Hi,
Thanks for purchase.
Does your browser console show any error message? If something is wrong with your own page code I need your url and ftp access please
Gilles
Hi There,
I bought the application but i am not happy would you please refund?
The purchase ID: ba9aa633-0ffe-4ea5-ad67-989248ff08f0
Cheers Reza
Hi Reza,
This is not the way it works. Please explain what’s wrong: is something not working? Can I help you?
Thanks,
Gilles
I bought it today and it is not working as expected, then i will rise a charge back if you do not refund.
Hello, Is the plugin used to create / register web 2.0 sites (subdomain) automatically? I want to register web 2.0 sites automatically.
Hi Juanchiz,
Thanks for purchase.
If you want to use PHP Form Builder without having to register on subdomains:
- Upload it on your main domain and register your copy
- Include on your subdomain from your main domain, for instance:
// directory structure: // public_html/phpformbuilder/Form.php // subdomain.domain.com/index.php // in subdomain.domain.com/index.php: include_once('../public_html/phpformbuilder/Form.php'); $form = new Form(...); // etc.
If you need anything else you’re welcome,
Gilles
Very useful script, good luck with sales!
I just purchased this item yesterday and it did not meet my expectation. I was expecting a drag and drop each to use application that does not require coding and long step by step guide of how to install and create a form.
The reason I bought this code is to save my self time that will be used in coding out forms, If I have to be using even an hour to be following a guide, the purpose for buying the code is defeated. I kindly will like to request for a refund.
Hi Adejumoke,
You’ve got nothing to install.- Upload the phpformbuilder folder on your server (not the complete package, but the folder inside)
- Open phpformbuilder/register.php and enter your purchase code
- Upload the drag-n-drop-form-builder folder on your server and open it in your browser to build your forms
Nothing to install, nothing to code. Copy/paste the generated code on your pages. That’s all.
uploaded the files to my local MAMP server previously and accessed the builder from this url – http://localhost:8888/qforms/phpformbuilder/drag-n-drop-form-builder/index.html – I could drag and drop but i could not go beyond that, It doesn’t allow me to make any modifications to the fields I dropped. Preview is also empty. There are also concerns about having a database for the forms
Hi Adejumoke,
Thanks for purchase.
About the database, the drag and drop will give you the code to insert records. You have to build your MySQL table with a field for each value, then it’ll just work.
About your drag and drop issue, please read this and contact me: https://www.phpformbuilder.pro/documentation/help-center.php#contact
Thanks,
Gilles
I know nobody wants to loose a buyer, but there are issues I have with this app that makes it not to fit into a plug and play application for me. And that is why I am asking for a refund.
Your documentation is a pointer to this fact – “If you’re not very comfortable coding in PHP, A detailed step-by-step tutorial is available here: PHP Beginners Guide”
I want to create forms without any form of coding. when I look at your documentation I see the need to code everywhere. I could see you have a large sales number, this shows you have a great application but unfortunately it does not work for me. Please I would appreciate if I am refunded. Thank you
The drag & drop does everything for you. You’ve got nothing to code.
The part of the documentation you refer to is here for users who want to learn and understand.
I also propose to build a free form for you, but ask for refund if you prefer, please remind me who you are and I’ll accept.
Gillezs
Thanks for your response, however I have since moved to other solutions. Unfortunately I will please need a refund. Thank you.