I have a table like that :
$lol[24] = '2';
$lol[36] = '3';
$lol[48] = '4';
$lol[60] = '5';
I have a value '27', i need to say : '27, value before is 24, so my value is 2'
What is the best method for that ?
I have a table like that :
$lol[24] = '2';
$lol[36] = '3';
$lol[48] = '4';
$lol[60] = '5';
I have a value '27', i need to say : '27, value before is 24, so my value is 2'
What is the best method for that ?