Hi
I think its rather -well- stupid and laborious to access the html form varaibles via $_get['var1'];
is there another, more elegant way?
thank you! 🙂
Hi,
you could use extract($_GET) Or you coudl chance your .ini file and set REGISTER_GLOBALS to on
But remember there is a security reason why the global variables are switched of by default...
J.
not too sure what your asking, byt try $_POST['var1']; instead of get, you also have to set the method="post" in the form tag in the html page.