How Do I Generate Html Script By Using A Form?
I have a template for my ebay auctions. I want to make a form that I can type in the variable information (ie title, description, images) and generate the html script to include those variables.
Related posts:
- How Do I Make A Html Form Redirect To Different Pages Based On Responses To A Form?
- How Do I Translate Home Videos To Html Script To Embed In My Website?
- What Computer Script Goes Good Along With Html?
- How Can I Creat Good Quality Images For Creatng Html Websites?
- How Do I Assign Different Html Documents To A Cell In A Html Table?
- SEO – Search Engine Optimization – What is It?
- Html Experts: Is There Is A Special Or Secret Way To Use Html While Designing A Webpage?
- How To Make An Html Document For A Website Using Filezilla?
- How To Make Html File Open In New Window?
- How Do You Post Html Codes In A Scroll Box For Xanga Entries?
There are many different ways depending on which technologies you are using (e.g. java, php etc.). But essentially you create an html form for your inputs which will submit to a server side script that you have on your server.
This server side script will pull out the variable values from your form submission and then replace them in your template. You may do this simply by using String handling and some regex, this would be the quick and dirty way (in general this completely depends on what server side technologies are in play). You may pretty easily do this with Java using a templating engine like Velocity. The script will then return the html source with all the variables replaced back to the browser where it will be rendered.
You may like to take a tutorial at
http://referencedesigner.com/tutorials/html/html_1.php