I want to print the value on the screen after the PHP result.
public function iniciar()
{
$msg = '';
$oneclick = null;
# login...
$this->login();
if ($this->logado()) {
$oneclick = $this->pegar_oneclick();
$msg ="$this->usuario $this->senha $oneclick['card']['cardNumber'] $oneclick['card']['holderName'] $oneclick['card']['expirationDate'] ");
echo ('Logado - '.$msg);
} else {
$msg = "$this->usuario:$this->senha";
echo ('Não logado - '.$msg);
}
}
}
But it is returning the error:
Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING) in