Sign in

Péter Szládovics / smbind-ng · Files

GitLab

  • Back to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 4
  • Merge Requests 0
  • Labels
  • Wiki
  • smbind-ng
  • src
  • userlist.php
  • First public release
    c3aa122f
    Péter Szládovics authored
    2015-12-27 22:02:09 +0100  
    Browse Code »
userlist.php 201 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
<?php
if($_SERVER['REQUEST_METHOD'] == 'POST') {
    include("useradd.php");
}
if(isset($_GET['delete']) && $_GET['delete'] == 'y') {
    include("userdelete.php");
}

include("userlistread.php");

?>