Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
<form action="quiz.cfm" method="get">
<fieldset>
<legend>Your Details</legend>
<div>
<label for="What is the length of a banana?">What is the length of a banana?:</label><br>
<input type="text" name="What is the length of a banana?" value="" maxlength="100" /><br>
</div>
<div>
<input type="submit" value="Submit" />
</div>
</fieldset>
</form>
Hello.
That is the code I have so far.
I want to know what I am supposed to do to actually get the answers, send them to my e-mail for example.
Thank you in advance,
Iluvpresident
The code below should be incorporated into the "quiz.cfm" page.
<cfmail
from="fromemailaddress"
to="toEmailAddress"
subject="A new form entry has been submitted">
A customer inquiry was posted to our website:
Text : #Form.answer#
</cfmail>
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I'm making a form and I want to surround a group of inputs with a line as shown in the picture below:
This is my code
<div class="selectMov" >
<p>Tipo de Movimiento</p>
<input type="radio" class="optTiMov" value=1> Entrada<br>
<input type="radio" class="optTiMov" value=2> Salida<br>
</div>
I've seen this kind of element before, but I don't what it is called or how to make it
A simple way is to use fieldset. Here is a similar example
fieldset {
border 1px solid #ddd;
border-radius: 6px;
}
<fieldset>
<legend>Personalia:</legend>
Name: <input type="text"><br>
Email: <input type="text"><br>
</fieldset>
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am horribly new in HTML and I want to implement a source code on HTML, which allows the user to choose content in different languages (basically EN and GER).
So far I found this to give the user the opportunity of choosing a language.
<form action="<?php echo $_SEVER['PHP_SELF'] ; ?>" method="POST">
<label><input type="radio" value="de" name="language"> DE</label>
<label><input type="radio" value="en" name="language"> EN</label>
<input type="submit" value="Ok" />
</form>
How can I add the text now?
So the user should be able to choose a language by putting a tick in a box or whatever and then only see the text in the chosen language.
Could u guys show me how to connect the selectable box with the texts?
Regards! Sascha
Is your question its just how to change text in different language this link could be a good starting point.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am doing an academic project, I need to create a button (as like/share button of facebook)who's height, width, text, link, and color are entered through form. The form has to generate button and its embedded code and preview on the same form.I am using bootstrap 3.0.
<script type="text/javascript">
function getcode()
{
var code='<button style="height:'+document.getElementById('height').value + 'px; width:'+document.getElementById('width').value + 'px; background-color:'+document.getElementById('color').value + '"></button>';
document.getElementById('preview').innerHTML=code;
document.getElementById('code').value=code;
}
</script>
<input type="text" id="width" />
<input type="text" id="height" />
<input type="color" id="color" />
<input type="submit" onclick="getcode()" />
<textarea id="code"></textarea>
<div id="preview"></div>
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
![example of textbox i want![][1]][1]
EXAPMLE OF textbox
hi to all
i have some problem with Table
when i create tage
i want like example below.
i have some problem
1. when i enter
CNIC-NO
--
they cannot dispplay same line
Note. i have only 2 coloumns in my table.
plz tell me how i draw this text box like example attached below.
[1]: http://i.stack.imgur.com/ulpZm.png "table
"
you can simply do this
<td>
<input type="text" style="display: inline-block" />
<input type="text" style="display: inline-block" />
<input type="text" style="display: inline-block" />
</td>
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions must demonstrate a minimal understanding of the problem being solved. Tell us what you've tried to do, why it didn't work, and how it should work. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I have magento commerce, and I am creating in html an automatic e-mail that is going to be sent when someone signs up (in Dreamweaver).
In the HTML code I have a button that is about subscribing in our newsletter. What is the code that I have to link to this image, so if someone clicks on it he will subscribe to the newsletter.
Thanks in advance,
Frank
The call goes to:
http://yourdomain.de/index.php/newsletter/subscriber/new/
But form data is sent via post as you can see in the Mage_Newsletter_SubscriberController newAction, where you find the following line of code.
$this->getRequest()->isPost() && $this->getRequest()->getPost('email')
So you need to name your form field 'email'
Good luck!
Edit:
Just use something like this:
<form action="http://yourdomain.com/index.php/newsletter/subscriber/new/" method="POST" id="newsletter-validate-detail">
<input type="text" class="input-text required-entry validate-email" name="email" id="newsletter">
<input type="image" src="path to image" name="submit" />
</form>