PDA

View Full Version : HTML help




MareoRaft
Oct 20, 2005, 10:10 PM
I need the HTML equivelent to the C language "c = getchar()" and "putchar()"

specifically, i am planning to use this information to input an email adress into an email function.

can you help me?



kainjow
Oct 20, 2005, 10:26 PM
HTML is a markup "language". It can't be used for dynamic stuff like that. To write to a file you need a server side scripting language, as client side stuff can't do that (unless maybe you're using a Java applet). Take a look at php.net for more info...