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 am starting in the Web development and I would like to know how to send HTML forms to the email that is selected, already indicated me PHPMailer but I searched knew and did not understand very well.
Are you just trying to send form information to an email address? If so you probably don't need something like phpMailer but rather just include a mailto: action in the form tag. (example)
It really depends on what exactly you're trying to do the form data you're collecting.
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 8 years ago.
Improve this question
I am trying to make a page that where the user can enter information into the inputs and print from there. an example would be this website.
How would you go about doing that.
The PDF is designed with editable regions, that the user can then fill in this is uploaded to the web server and accessed through the website this can be done in adobe check this link - http://www.adobe.com/content/dam/Adobe/en/products/acrobat/pdfs/adobe-acrobat-xi-convert-forms-into-fillable-pdf-tutorial_ue.pdf
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 have an h1 header on my page that simply says "Hello world".
I want to know how I can add a form to change the header to say "Hello world from my_form_field_value".
It depends on the technology you are using (jQuery, ASP(.NET), PHP, etc).
user3047190's answer used jQuery (client side solution). If using a server side solution, you can have the form send a querystring containing the text to the server and return a page with the text you just typed in.
Here's an online example: http://html.net/tutorials/asp/lesson11_ex1.asp
Here's the tutorial explaining the above classic ASP example: http://html.net/tutorials/asp/lesson11.asp
This question is horribly phrased so I'm afraid I will answer your question with other answers.
What I believe you want is on input change, you want to capture the change (Detecting input change in jQuery?) and update the h1 text: $("h1").text("newString");
(that will only work with jquery included)
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 have made a newsletter with html and css,and in my newsletter,there are 4 fields,text boxes I mean,such as users name,family name,phone number and email address.I want to know that how should I save these informations which I get from the user in my newsletter. Should I save them on an excel file on the host?or what?what should I do?I will be so thankful for your help.
It is not possible to add forms in emails, they require server side code and database to work. You should link to a web based form so the email recipient can click and go to the form online to fill it in.
You have to use a server side language to store the data on a server, like PHP.
Instead link to a wufoo or google forms. You cannot embed a form in your email (yet).
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 2 years ago.
Improve this question
I want to detect the links in page which are used for advertisement. Or is there any statistical data by which I can guess this link is for advertisement?
I know this isn't a concrete answer, but if I were doing the same, I'd take a look at AdBlock and other add-ons in browsers such as Firefox since they do much the same. There are quite a few open source add-ons out there where you can view the code that does this. And even most email programs detect junk mail (and ads) using Bayesian filters which I'm sure with a bit of tweaking would work well.
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 have a photo-gallery type html page. I am able to send emails using the <a href mailto:> function when a certain picture is selected. I would like to have that picture be automatically included in the email whether as an attachment (preferably) or in the body.
This is impossible.
The mailto: URI scheme provides no mechanism to either attach files or provide HTML formatted email.
The closest you could come would be to specify the URL as plain text in the body of the email (using body= in the query string).
Alternatively, send the email using server side code (which would give you full control over its content).