Untitled
unknown
plain_text
a year ago
607 B
6
Indexable
<?php
if(strtotime($row[$i]["renewal_date"]) >= '2018-09-01')
{
if(strtotime($row[$i]["renewal_date"]) >= '2024-09-01')
$table = '2024';
elseif(strtotime($row[$i]["renewal_date"]) >= '2023-09-01')
$table = '2023';
elseif(strtotime($row[$i]["renewal_date"]) >= '2022-09-01')
$table = '2022';
elseif(strtotime($row[$i]["renewal_date"]) >= '2019-09-01')
$table = '2020';
else
$table = '2019';
}
?>Editor is loading...
Leave a Comment