MOON
Server: Apache
System: Linux server30c.hostingraja.org 3.10.0-962.3.2.lve1.5.63.el7.x86_64 #1 SMP Fri Oct 8 12:03:35 UTC 2021 x86_64
User: jibhires (1887)
PHP: 8.1.30
Disabled: show_source, system, shell_exec, passthru, exec, popen, proc_open, allow_url_fopen, symlink, escapeshellcmd, pcntl_exec
Upload Files
File: //home/jibhires/d1.brightsolutionsindia.com/reg.php
<!DOCTYPE html>
<html>
<head>
    <title>Employee Registration</title>
    <style>
        .form-group { margin-bottom: 15px; }
        label { display: inline-block; width: 120px; }
    </style>
</head>
<body>
    <h1>Employee Registration</h1>
    <form method="post" enctype="multipart/form-data">
        <div class="form-group">
            <label>Name:</label>
            <input type="text" name="name" required>
        </div>
        
        <div class="form-group">
            <label>Section:</label>
            <select name="section" required>
                <option value="PCBA">PCBA</option>
                <option value="PREFAB">PREFAB</option>
                <option value="SUB ASSEMBLY">SUB ASSEMBLY</option>
                <option value="ASSEMBLY 1">ASSEMBLY 1</option>
                <option value="ASSEMBLY 2">ASSEMBLY 2</option>
                <option value="ASSEMBLY 3">ASSEMBLY 3</option>
                <option value="ASSEMBLY 4">ASSEMBLY 4</option>
                <option value="ASSEMBLY 5">ASSEMBLY 5</option>
                <option value="PACKING">PACKING</option>
            </select>
        </div>
        
        <div class="form-group">
            <label>Level:</label>
            <input type="number" name="level" min="1" required>
        </div>
        
        <div class="form-group">
            <label>Photo:</label>
            <input type="file" name="photo" accept="image/*" required>
        </div>
        
        <button type="submit">Register</button>
    </form>
</body>
</html>