explode() and different versions of php?
I am running this code on version 4.3.4
This code takes a range of years e.g. 1980-85 and inserts into the database 80,81,82,83,84,85
$yr=explode("-", $years);
if($yr)
{
$left=substr($yr[0],-2);
$right=substr($yr[1],-2)...