Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. $filename = '/home/bds/public_html/semaine/';
  2. for ($i=1; $i<=52; $i++) {
  3. $annee = date("Y");
  4. if($i<=date('W')) {
  5. if (file_exists($filename."s".sprintf('%02d', $i)."-".date('Y')."class.php")) {
  6. ?>
  7. <li><a href="index.php?archive_scores_hebdomadaires1&id_archive=s<? echo sprintf('%02d', $i); ?>-<? echo $annee; ?>"><strong><? echo sprintf('%02d', $i); ?></strong></a></li>
  8. <?
  9. } else {
  10. ?>
  11. <li><? echo sprintf('%02d', $i); ?></li>
  12. <?
  13. }
  14. } else {
  15. ?>
  16. <li><strong><? echo sprintf('%02d', $i); ?></strong></li>
  17. <?
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement