i have a php page which i should post some data to it like this:
$player=$_POST['player']; $age=$_POST['age']; $data=$_POST['data'];
but some times my page posts data and some times it shouldn't, when i dont post data i got Undefined index: error, is there any way to skip $_POST['data'] when no data is posted?