I would like to know where my error is in this class in php
, if anyone can help thanks, the error is as follows:
Parse error: syntax error, unexpected '$ _POST' (T_VARIABLE) in C: \ wamp \ www \ exercise \ 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;
}
}