Form Application by using HTML - html

I want to create a HTML form . User will give input and the data will save in excel sheet.
Please support as soon as possible.
Thanks,
Joydeep Karmakar

you will need to include Php with this form not HTML only because you should use PhpMyExcel to create that excel sheet and this site will help you to deal with PhpMyExcel functions PhpMyExcel-Documentation
and to create that HTML form you should try this tutorials W3schools

Related

Netsuite custom html case form - where does it go?

I have several forms on my website, and currently working on replacing these forms with Netsuite's forms.
To do so I create an html template for each form, using Netsuite's nl tags.
The requirement is to save the submissions of each form separately, but I don't know how to make it appear under a certain list, everything goes under 'leads'.
I may be missing something since I'm not entirely familiar with Netsuite's terminology regarding lists,cases, etc.
NetSuite already has Case, Customer and Email forms and if you have separate list then you can create Custom record and use online form under that record and public that form so it will be stored separately on your custom record.
Hope this help.
Regards,
Mayur

Change form palette via google scripts

I need a help. I am using Google App Scripts for creating Google Forms. How I can change form's color/palette?
I tried to find here https://developers.google.com/apps-script/reference/forms/, but nothing found.
For the moment you can't, FormApp works with the first version of Forms, so for the moment no templates available programmatically.
Last news on the subject here
I was facing the same issue here and found a workaround: create a "Template Form" with the proper theme you want, then you make a copy of it and do your coding to the new copied form.
The problem is, if you want to custom each form with a theme, it would need several template forms, and the code should be able to select the correct template. However, this is not my case. Here is a sample code:
var file = DriveApp.getFileById('your-template-form-id').makeCopy();
var form = FormApp.openById(file.getId());
Just make sure you remove the single question that is created within the template form if you're adding questions dinamically, else, add the questions you need.
Good to note that once you generate a form programmatically, you can then edit it just like a regular form. You get the link to the editable page from form.getEditUrl().

Send all fields in email with HTML Webform

I have created a webform in HTML 5 and CSS 3. I would like the action to be set to email and send all of the fields.
Here is my currently existing code, using js fiddle: http://jsfiddle.net/o1njosLa/
This is the result from the email:
"message=128+Baker+Street%0D%0A%0D%0ALondon&email=john_doe%40example.com&website=http%3A%2F%2Fetetet.com&message="
So my questions are:
Is there an easy way to send the form to an email address without
having to open up outlook? I sure there are but I would just like a
decent and hopefully quick tutorial which I can just add on to my
existing HTML and CSS?
How can I get all fields to send in an email?
Thanks for your help.
You can't do it with HTML only, you can PHP (a server side language), you can find a guide on http://www.w3schools.com/php/php_forms.asp.

Customize Ektron HTML Form Email Layout

I would like to know if there's a way to customize the email HTML body contents when submitting an Ektron HTML form.
For example, a form is submitted and the form data is emailed to john#doe.gov. Upon opening the email, there is a table containing the data from the submitted form. I want to know if there's a way to modify the HTML table which was generated for that email.
My goal is to experiment with some CSS to force word-wrapping in the table so lengthy textarea-input data will be wrapped appropriately.
I've never tried customizing it, so I don't know if there are any "gotchas", but these files look promising:
/Workarea/controls/forms/DefaultFormEmailBody.xslt
/Workarea/controls/forms/template_FormDataDisplay.xslt
/Workarea/controls/forms/template_FormFieldValue.xslt
The table is generated in "template_FormDataDisplay.xslt", and the individual table rows are generated in "template_FormFieldValue.xslt".
The usual "I want to modify something in the workarea" warning applies: Make backups of any file you change, and know that installing an upgrade to Ektron will overwrite any of your changes.
Are you using php? Because you can edit the way that email looks once you open it. This is an awesome tutorial:
http://tangledindesign.com/how-to-create-a-contact-form-using-html5-css3-and-php/

Using Ruby on Rails to write to an Excel spreadsheet AND include html markup in the text

I have a Ruby on Rails web application in which the user clicks on a link which produces a spreadsheet.
It was easy enough to do this. What I haven't been able to do is get it to write text in the cells formatted according to html tags.
book = Spreadsheet::Workbook.new
sheet = book.create_worksheet :name => "My worksheet"
sheet[0,0] = "<strong style="color:red">I want this to appear as red</strong>"
And I get it that you can use the Spreadsheet:Format.new object to set the format for a cell or a row - but in this case I won't know this ahead of time; I need for the spreadsheet to automatically interpret html tags as the text is sucked in from a database.
Any suggestions?
Thanks in advance,
Tim
I am not sure, whether these HTML tags can directly be converted to styles in excel sheets. I faced a few problems when dealing with rails and microsoft office outputs.
Check out this blog, this might help you. http://axlsx.blog.randym.net/2011/12/axlsx-making-excel-reports-with-ruby-on.html
so maybe, you can create a function.. Parse your styling tags, and then accordingly convert them to the excel supported params mentioned in the blog