Hello guys,
Can anyone help me with the function for build year. I changed the number from 1900 to 2010 to see if will gave me more options, but it only list until 2013. How can I change to give me the option to show future years, something like from 2010 to 2020.
print_r("<option value=''>"
;
print_r(_REALESTATE_MANAGER_OPTION_SELECT);
print_r("</option>"
;
$num=2010;
for($i= 0;$num<=date('Y'
;$i++)
{
print_r("<option value=""
;
print_r($num);
print_r("""
;
if($num == $row->year){
print(" selected= "true" "
;
}
print_r(">"
;
print_r($num);
print_r("</option>"
;
$num++;
}
Thanks.