hello expert:
got 2 basic questions:
1.don't know how to review php.ini content to check if register_globals is set "on" or "off". i know php.ini is on the server end. how to pull i up?
2. i see a paragraph says..."assuming register_globals is turned off"for this reason, we assume that you have access to the posted variables through the $_POST array only. What you are doing here is looping through $_POST and setting each variable yourself...
foreach($_POST as $key => $value) {
$$key=$value;
}
What does double $$ mean here ? (pass by referecence like c/c++?_
rarely see kind of $$ syntax.
Thank you very much