iwuvcookies 0 Report post Posted April 2, 2005 Does anyone know of any tutorial or can help me with making a form. I'll describe the situation and lets see if you can help me.Ok like a few form or text areas that when you put some text into them they'll input the words from the form area above into another form or textarea under it. Sort of like an online html maker where you can select your background colors, put an image url in a field, and some other options THAN you hit a button that says generate. and it generates a website html source code where you can copy the whole thing and paste into your own website. I hope you understand what i'm trying to say. Share this post Link to post Share on other sites
eiteljoh 0 Report post Posted April 3, 2005 hey - sounds like exactly the purpose of a "form" ... you should be able to have all that textarea / fields in your form, then click submit, and the next page will analyse and make your code. very standard - i always refer to http://www.w3schools.com/html/default.asp as a good place to find this information. <form name='go' action=process.cgi> <textarea name=stuff1></textarea> <input type=text name=stuff2> <input type=submit value='go!'></form> This will send values of stuff1 and stuff2 to process.cgi. hope that helps - and hope it's kinda what your talking about ... Share this post Link to post Share on other sites
Tyssen 0 Report post Posted May 10, 2005 I'm not sure exactly what you're after but it sounds like you're after a rich text editor. Kevin Roth has developed a very good cross-browser version which I use on my company's site. Share this post Link to post Share on other sites