What is the PHP equivilent for "in". For example:
if ($data in [1..10]) { }
There are several array functions you might be interested in 😃 http://www.php.net/manual/en/function.in-array.php
Try... if(in_array($data,range(1,10)))