in the Advanced Administration section, only the first three buttons ("Load Games," "Maintain Games," and "Randomize SB Scores") work. The remainder do not work.
/**************************************************************/
/* This section grabs the POST Variables and assigns them */
/* to their appropriate values */
/* ******************************************************* */
while(list($key,$value)=each($HTTP_POST_VARS))
{
${$key}=$value;
//echo "<br>$key = $value";
}
/**************************************************************/
/* This section grabs the Get Variables and assigns them */
/* to their appropriate values */
/* ******************************************************* */
while(list($key,$value)=each($HTTP_GET_VARS))
{
${$key}=$value;
// echo "$key = $value";
}
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
/**************************************************************/
/* This section grabs the POST Variables and assigns them */
/* to their appropriate values */
/* ******************************************************* */
while(list($key,$value)=each($HTTP_POST_VARS))
{
${$key}=$value;
//echo "<br>$key = $value";
}
/**************************************************************/
/* This section grabs the Get Variables and assigns them */
/* to their appropriate values */
/* ******************************************************* */
while(list($key,$value)=each($HTTP_GET_VARS))
{
${$key}=$value;
// echo "$key = $value";
}
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: NO
I had the same problem,
register globals must be set to on
http://us3.php.net/register_globals
or better yet, figure out which variables are used from POST or GET and then assign them yourself.
Logged In: NO
try adding this to the top of the globals file
/**************************************************************/
/* This section grabs the POST Variables and assigns them */
/* to their appropriate values */
/* ******************************************************* */
while(list($key,$value)=each($HTTP_POST_VARS))
{
${$key}=$value;
//echo "<br>$key = $value";
}
/**************************************************************/
/* This section grabs the Get Variables and assigns them */
/* to their appropriate values */
/* ******************************************************* */
while(list($key,$value)=each($HTTP_GET_VARS))
{
${$key}=$value;
// echo "$key = $value";
}
Logged In: NO
try adding this to the top of the globals file
/**************************************************************/
/* This section grabs the POST Variables and assigns them */
/* to their appropriate values */
/* ******************************************************* */
while(list($key,$value)=each($HTTP_POST_VARS))
{
${$key}=$value;
//echo "<br>$key = $value";
}
/**************************************************************/
/* This section grabs the Get Variables and assigns them */
/* to their appropriate values */
/* ******************************************************* */
while(list($key,$value)=each($HTTP_GET_VARS))
{
${$key}=$value;
// echo "$key = $value";
}