Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. function fpDisplayContent($nDisplayDate, $nRehideDate, $sContent) {
  2. return '<li>Got To 1</li>';
  3.  
  4. global $nCurrentDate;
  5. if (($nDisplayDate <= $nCurrentDate) && ($nCurrentDate <= $nRehideDate)){
  6. return $sContent;
  7. }
  8. return '<li>Got To 2</li>';
  9. return '';
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement