[PHP] I give - Whats wrong

2001-01-24 Thread Karl J. Stubsjoen

I've tried and tried to figure out what is wrong with this function, but I
can't.  Could you please have a look.  This function reconstructs the
querystring values passed in the querystring:

function PassOnGetVars() {
 global $HTTP_GET_VARS;
#initialize retrn value
$retrn = "?";

#loop through each Get Var
 reset ($HTTP_GET_VARS);
 while (list($VariableName, $VariableValue) = each ($HTTP_GET_VARS))
 {
  retrn =. "$VariableName\=$VariableValue";
  retrn =. "";
 }

#return the value
 return($retrn);
}

I've tried both versions of =. and .= (struggling to remember which is
correct.  But this isn't the error, I get the same error regardles of the .=
The error I get is line 60 (which is)

  retrn .= "$VariableName=$VariableValue";

Thanks!  Karl


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] I give - Whats wrong

2001-01-24 Thread Rasmus Lerdorf

You could of course just check $QUERY_STRING

As for your error, you a missing a $ in front of retrn at the beginning of
that line.

-Rasmus

On Wed, 24 Jan 2001, Karl J. Stubsjoen wrote:

 I've tried and tried to figure out what is wrong with this function, but I
 can't.  Could you please have a look.  This function reconstructs the
 querystring values passed in the querystring:

 function PassOnGetVars() {
  global $HTTP_GET_VARS;
 #initialize retrn value
 $retrn = "?";

 #loop through each Get Var
  reset ($HTTP_GET_VARS);
  while (list($VariableName, $VariableValue) = each ($HTTP_GET_VARS))
  {
   retrn =. "$VariableName\=$VariableValue";
   retrn =. "";
  }

 #return the value
  return($retrn);
 }

 I've tried both versions of =. and .= (struggling to remember which is
 correct.  But this isn't the error, I get the same error regardles of the .=
 The error I get is line 60 (which is)

   retrn .= "$VariableName=$VariableValue";

 Thanks!  Karl


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] I give - Whats wrong

2001-01-24 Thread Karl J. Stubsjoen

Freak'n Duhh!  My eyes are still blury to PHP *obviously*.
Thanks!

So $QUERY_STRING eh?  I'll look that one up.

Karl

- Original Message -
From: "Rasmus Lerdorf" [EMAIL PROTECTED]
To: "Karl J. Stubsjoen" [EMAIL PROTECTED]
Cc: "PHP Mailing List" [EMAIL PROTECTED]
Sent: Wednesday, January 24, 2001 4:31 PM
Subject: Re: [PHP] I give - Whats wrong


 You could of course just check $QUERY_STRING

 As for your error, you a missing a $ in front of retrn at the beginning of
 that line.

 -Rasmus

 On Wed, 24 Jan 2001, Karl J. Stubsjoen wrote:

  I've tried and tried to figure out what is wrong with this function, but
I
  can't.  Could you please have a look.  This function reconstructs the
  querystring values passed in the querystring:
 
  function PassOnGetVars() {
   global $HTTP_GET_VARS;
  #initialize retrn value
  $retrn = "?";
 
  #loop through each Get Var
   reset ($HTTP_GET_VARS);
   while (list($VariableName, $VariableValue) = each ($HTTP_GET_VARS))
   {
retrn =. "$VariableName\=$VariableValue";
retrn =. "";
   }
 
  #return the value
   return($retrn);
  }
 
  I've tried both versions of =. and .= (struggling to remember which is
  correct.  But this isn't the error, I get the same error regardles of
the .=
  The error I get is line 60 (which is)
 
retrn .= "$VariableName=$VariableValue";
 
  Thanks!  Karl
 
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  To contact the list administrators, e-mail: [EMAIL PROTECTED]
 




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]