I get Undefined index on the 6th line (if condition). What is the reason?
<select name="day" id="day">
<?php
for($i=01; $i<=31; $i++)
{
    echo "<option value='$i'";
    if ($_POST['day'] == $i){ echo "selected";}
    echo">$i</option>";
}
 ?>
</select>
 
     
     
    