Guest User

Untitled

a guest
Oct 18th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. <?
  2.  
  3. $data_hoje = new DateTime;
  4.  
  5. $data_inicio = new DateTime;
  6. $data_inicio->setDate(2011, 09, 12);
  7.  
  8. $data_termino = new DateTime;
  9. $data_termino->setDate(2011, 09, 16);
  10.  
  11. ?>
  12. ini -
  13. <?= ($data_hoje>=$data_inicio)?$data_inicio->format('d/m/Y'):"&nbsp;";?>
  14. ter -
  15. <?= ($data_hoje>=$data_inicio)?$data_termino->format('d/m/Y'):"&nbsp;";?>
  16.  
  17. ?>
Add Comment
Please, Sign In to add comment