can i just click the hyperlink pass the value to another page? for example, when click Submit, then pass the $name to another page. normally we just pass the value using button such as POST or GET. can the hyperlink do the same function?
Yes, via the querystring, using the GET method.
can u show me some example? thank you..
filename.php?name=value&name2=value2
then use $GET['name'] and $GET['name2']
this is from first page? <a href="welcome.php?name=value&name2=value2 ">submit</a>
then this is the second page? $GET['name'] and $GET['name2']
Indeed.