• 22-12-2020, 16:10:34
    #1
    Bir kactane tarihi yazip bunu siralama yapabilecek bir site varmidir acaba?
  • 22-12-2020, 16:50:07
    #2
    <html>
    <body>
    
    <form action="" method="POST"><textarea name="dates"></textarea><button type="submit"> Gönder </button></form>
    <?php if($_POST){?>    
    
    <?php foreach(explode("\r\n", $_POST['dates']) as $date){        
       $strtotime = date('Y-m-d',strtotime($date));        
       $dates[strtotime($strtotime)] = $date;     
    }      
    ksort($dates);          
    
    echo implode('</br>',$dates);
    
    } ?>
    </body></html>