Hi, I Install apache webserver and PHP, but when i sumited form, i ca'nt get the values form(Get, Post method). the value is "". Please help me
Can you please post the code that you are using.
check in your php.ini file for this register_globals
set there "On" i'm sure Yo have there Off,
i don't understand why all new php versions have this off, and nothing works 😕
The reason they have it off is because it is more secure. if you have it on, then anyone can specify a variable in the URL and if it is a variable in your script then they can screw up your script.
Its usually better to get used to using GET and POST cos someday u might have to use an ISP who has register_globals off.
Just use $GET['variable'] or $POST['variable'] or you can opt for (the asp guys like this) $_REQUEST['variable']
Make sure it's single quotes so you dont get undefined contant errors and we know its a key, not a string. 😉