+ 1
How to get the information from my form
I wanna know how to get information from the form i made :) im just going to try it :D
3 Answers
+ 6
You cannot get by using html, you need to use programing language, html is a markup language.
use JavaScript or PHP to get like
in JavaScript
var a = document.getElementById("my").valueÂ
if your html tag has id my
and in PHP
$d=$_GET['my'];
if name attribute of html tag is my
0
In what language? JavaScript or PHP? Just HTML can not do that.
0
Well on server your form must validate so therefore using server side language is a must if you don't want to increase the burden on client side