Hello guys
I have a class here, and i want to pass $HTTP_POST_VARS to one of the function, but i get error message when i want to read the passed value.
<?
class Member{
function vallidateForm ($HTTP_POST_VARS){
echo "$HTTP_POST_VARS['frmUsername']";
}
}
$user = new Member;
if($action=="register"){
$user->vallidateForm($HTTP_POST_VARS);
}else{
$user->displayForm();
}
Why i try to run it i get error
Parse error: parse error, expecting T_STRING' orT_VARIABLE' or `T_NUM_STRING' in c:\program files\apache
group\apache\htdocs\cms\member.php on line 235
Thank you very much