0
I would like to know where is my mistake in this class in php
, If anyone can help I thank you, the mistake is this:
Parse error: syntax error, Unexpected '$_POST' (T_VARIABLE) in C: wamp www exercicio1 class Function.class.php on line 4
class Pessoa{
var $codigo = $_POST["codigo"];
var $nome = $_POST["nome"];
var $altura = $_POST["altura"];
var $idade = $_POST["idade"];
var $dt_nasc = $_POST["dt_nasc"];
var $escol = $_POST["escol"];
var $salario = $_POST["salario"];
function crescer($centimetros){
$this->altura+=$centimetros;
}
function formar($titulo){
&this->idade+=$anos;
}
function envelhecer($anos){
$this->idade+=$anos;
}
}