Karl,
it's .= 
(read the fine manual ;-) )


>   retrn =. "$VariableName\=$VariableValue";
>   retrn =. "&";

Variables in PHP need a $dollarsign. Money makes the world go round....

Chris



Send reply to:          "Karl J. Stubsjoen" <[EMAIL PROTECTED]>
From:                   "Karl J. Stubsjoen" <[EMAIL PROTECTED]>
To:                     "PHP Mailing List" <[EMAIL PROTECTED]>
Date sent:              Wed, 24 Jan 2001 16:34:41 -0700
Subject:                [PHP] I give - Whats wrong

> 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))
>  {
>  }
> 
> #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]



--------------------------------------------------------------------
--  C.Hayes  Droevendaal 35  6708 PB Wageningen  the Netherlands  --
--------------------------------------------------------------------

 

-- 
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]

Reply via email to