users.inc 109 B

1234567
  1. <?php
  2. if ($_SERVER['REMOTE_USER'] == "admin") {
  3. $poster = "admin";
  4. } else {
  5. $poster = "Nobody";
  6. }
  7. ?>