Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php include "Views/Templates/header.php"; ?> <button class="btn btn-outline-primary mb-..

Decoded Output download

<?php include "Views/Templates/header.php"; ?> 
<button class="btn btn-outline-primary mb-2" type="button" onclick="frmCliente();"><i class="fas fa-plus"></i></button> 
<a class="btn btn-outline-danger mb-2" href="<?php echo base_url; ?>Clientes/inactivos"><i class="fas fa-trash"></i></a> 
<div class="card"> 
    <div class="card-header bg-info text-white"> 
        Socios 
    </div> 
    <div class="card-body"> 
        <div class="table-responsive"> 
            <table class="table table-bordered table-hover display responsive nowrap" id="tblClientes" style="width: 100%;"> 
                <thead class="bg-info text-white"> 
                    <tr> 
                        <th>Id</th> 
                        <th>Dni</th> 
                        <th>Nome</th> 
                        <th>Telefone</th> 
                        <th>Direco</th> 
                        <th>Estado</th> 
                        <th></th> 
                        <th></th> 
                    </tr> 
                </thead> 
                <tbody> 
                </tbody> 
            </table> 
        </div> 
    </div> 
</div> 
<div class="modal fade" id="myModal" tabindex="-1" aria-labelledby="Label" aria-hidden="true"> 
    <div class="modal-dialog"> 
        <div class="modal-content"> 
            <div class="modal-header bg-info text-white"> 
                <h5 class="modal-title" id="title"></h5> 
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> 
            </div> 
            <form id="formulario" onsubmit="registrarCli(event);" autocomplete="off"> 
                <div class="modal-body"> 
                    <svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> 
                        <symbol id="check-circle-fill" fill="currentColor" viewBox="0 0 16 16"> 
                            <path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z" /> 
                        </symbol> 
                        <symbol id="info-fill" fill="currentColor" viewBox="0 0 16 16"> 
                            <path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z" /> 
                        </symbol> 
                        <symbol id="exclamation-triangle-fill" fill="currentColor" viewBox="0 0 16 16"> 
                            <path d="M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z" /> 
                        </symbol> 
                    </svg> 
                    <div class="alert alert-info d-flex align-items-center" role="alert"> 
                        <svg class="bi flex-shrink-0 me-2" width="24" height="24" role="img" aria-label="Info:"> 
                            <use xlink:href="#info-fill" /> 
                        </svg> 
                        <div> 
                            Todos os campos <span class="text-danger fw-bold">*</span> so obrigatorios. 
                        </div> 
                    </div> 
                    <div class="form-floating mb-3"> 
                        <input type="hidden" id="id" name="id"> 
                        <input id="dni" class="form-control" type="number" name="dni" placeholder="Documento de Identidade"> 
                        <label for="dni"><i class="fas fa-id-card"></i> Dni <span class="text-danger fw-bold">*</span> </label> 
                    </div> 
                    <div class="form-floating mb-3" data-bs-toggle="tooltip" data-bs-placement="bottom" title="O nome  obrigatorio"> 
                        <input id="nombre" class="form-control" type="text" name="nombre" placeholder="Nome do socio" required> 
                        <label for="nombre"><i class="fas fa-list"></i> Nome <span class="text-danger fw-bold">*</span> </label> 
                    </div> 
                    <div class="form-floating mb-3" data-bs-toggle="tooltip" data-bs-placement="bottom" title="O Telefone  obrigatorio"> 
                        <input id="telefono" class="form-control" type="number" name="telefono" placeholder="Telefone" required> 
                        <label for="telefono"><i class="fas fa-phone"></i> Telefone <span class="text-danger fw-bold">*</span> </label> 
                    </div> 
                    <div class="form-floating mb-3" data-bs-toggle="tooltip" data-bs-placement="bottom" title="A Direco  obrigatorio"> 
                        <textarea id="direccion" class="form-control" name="direccion" rows="3" placeholder="Direco" required></textarea> 
                        <label for="direccion"><i class="fas fa-home"></i> Direco <span class="text-danger fw-bold">*</span> </label> 
                    </div> 
                </div> 
                <div class="modal-footer"> 
                    <button class="btn btn-outline-primary" type="submit" id="btnAccion">Registrar</button> 
                    <button class="btn btn-outline-danger" type="button" data-bs-dismiss="modal">Cancelar</button> 
                </div> 
            </form> 
        </div> 
    </div> 
</div> 
<?php include "Views/Templates/footer.php"; ?> 
 
 
 
<?php include "Views/Templates/header.php"; ?> 
<a class="btn btn-outline-primary mb-2" href="<?php echo base_url; ?>Clientes"><i class="fas fa-reply"></i></a> 
<div class="card"> 
    <div class="card-header bg-info text-white"> 
        Clientes Inactivos 
    </div> 
    <div class="card-body"> 
        <div class="table-responsive"> 
            <table class="table table-bordered table-hover display responsive nowrap" style="width: 100%;" id="tbl"> 
                <thead class="bg-info text-white"> 
                    <tr> 
                        <th>Id</th> 
                        <th>Nome</th> 
                        <th>Telefone</th> 
                        <th>Direco</th> 
                        <th>Estado</th> 
                        <th></th> 
                    </tr> 
                </thead> 
                <tbody> 
                    <?php foreach ($data['clientes'] as $row) { 
                        if ($row['estado'] == 0) { 
                            $estado = '<span class="badge bg-danger">Inactivo</span>'; 
                        } 
                    ?> 
                        <tr> 
                            <td><?php echo $row['id']; ?></td> 
                            <td><?php echo $row['nombre']; ?></td> 
                            <td><?php echo $row['telefono']; ?></td> 
                            <td><?php echo $row['direccion']; ?></td> 
                            <td><?php echo $estado; ?></td> 
                            <td> 
                                    <button class="btn btn-outline-primary" type="button" onclick="btnReingresarCli(<?php echo $row['id'] ?>);"><i class="fas fa-trash-restore"></i></button> 
                            </td> 
                        </tr> 
                    <?php } ?> 
                </tbody> 
            </table> 
        </div> 
    </div> 
</div> 
<?php include "Views/Templates/footer.php"; ?>

Did this file decode correctly?

Original Code

<?php include "Views/Templates/header.php"; ?>
<button class="btn btn-outline-primary mb-2" type="button" onclick="frmCliente();"><i class="fas fa-plus"></i></button>
<a class="btn btn-outline-danger mb-2" href="<?php echo base_url; ?>Clientes/inactivos"><i class="fas fa-trash"></i></a>
<div class="card">
    <div class="card-header bg-info text-white">
        Socios
    </div>
    <div class="card-body">
        <div class="table-responsive">
            <table class="table table-bordered table-hover display responsive nowrap" id="tblClientes" style="width: 100%;">
                <thead class="bg-info text-white">
                    <tr>
                        <th>Id</th>
                        <th>Dni</th>
                        <th>Nome</th>
                        <th>Telefone</th>
                        <th>Direco</th>
                        <th>Estado</th>
                        <th></th>
                        <th></th>
                    </tr>
                </thead>
                <tbody>
                </tbody>
            </table>
        </div>
    </div>
</div>
<div class="modal fade" id="myModal" tabindex="-1" aria-labelledby="Label" aria-hidden="true">
    <div class="modal-dialog">
        <div class="modal-content">
            <div class="modal-header bg-info text-white">
                <h5 class="modal-title" id="title"></h5>
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
            </div>
            <form id="formulario" onsubmit="registrarCli(event);" autocomplete="off">
                <div class="modal-body">
                    <svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
                        <symbol id="check-circle-fill" fill="currentColor" viewBox="0 0 16 16">
                            <path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z" />
                        </symbol>
                        <symbol id="info-fill" fill="currentColor" viewBox="0 0 16 16">
                            <path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z" />
                        </symbol>
                        <symbol id="exclamation-triangle-fill" fill="currentColor" viewBox="0 0 16 16">
                            <path d="M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5zm.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2z" />
                        </symbol>
                    </svg>
                    <div class="alert alert-info d-flex align-items-center" role="alert">
                        <svg class="bi flex-shrink-0 me-2" width="24" height="24" role="img" aria-label="Info:">
                            <use xlink:href="#info-fill" />
                        </svg>
                        <div>
                            Todos os campos <span class="text-danger fw-bold">*</span> so obrigatorios.
                        </div>
                    </div>
                    <div class="form-floating mb-3">
                        <input type="hidden" id="id" name="id">
                        <input id="dni" class="form-control" type="number" name="dni" placeholder="Documento de Identidade">
                        <label for="dni"><i class="fas fa-id-card"></i> Dni <span class="text-danger fw-bold">*</span> </label>
                    </div>
                    <div class="form-floating mb-3" data-bs-toggle="tooltip" data-bs-placement="bottom" title="O nome  obrigatorio">
                        <input id="nombre" class="form-control" type="text" name="nombre" placeholder="Nome do socio" required>
                        <label for="nombre"><i class="fas fa-list"></i> Nome <span class="text-danger fw-bold">*</span> </label>
                    </div>
                    <div class="form-floating mb-3" data-bs-toggle="tooltip" data-bs-placement="bottom" title="O Telefone  obrigatorio">
                        <input id="telefono" class="form-control" type="number" name="telefono" placeholder="Telefone" required>
                        <label for="telefono"><i class="fas fa-phone"></i> Telefone <span class="text-danger fw-bold">*</span> </label>
                    </div>
                    <div class="form-floating mb-3" data-bs-toggle="tooltip" data-bs-placement="bottom" title="A Direco  obrigatorio">
                        <textarea id="direccion" class="form-control" name="direccion" rows="3" placeholder="Direco" required></textarea>
                        <label for="direccion"><i class="fas fa-home"></i> Direco <span class="text-danger fw-bold">*</span> </label>
                    </div>
                </div>
                <div class="modal-footer">
                    <button class="btn btn-outline-primary" type="submit" id="btnAccion">Registrar</button>
                    <button class="btn btn-outline-danger" type="button" data-bs-dismiss="modal">Cancelar</button>
                </div>
            </form>
        </div>
    </div>
</div>
<?php include "Views/Templates/footer.php"; ?>



<?php include "Views/Templates/header.php"; ?>
<a class="btn btn-outline-primary mb-2" href="<?php echo base_url; ?>Clientes"><i class="fas fa-reply"></i></a>
<div class="card">
    <div class="card-header bg-info text-white">
        Clientes Inactivos
    </div>
    <div class="card-body">
        <div class="table-responsive">
            <table class="table table-bordered table-hover display responsive nowrap" style="width: 100%;" id="tbl">
                <thead class="bg-info text-white">
                    <tr>
                        <th>Id</th>
                        <th>Nome</th>
                        <th>Telefone</th>
                        <th>Direco</th>
                        <th>Estado</th>
                        <th></th>
                    </tr>
                </thead>
                <tbody>
                    <?php foreach ($data['clientes'] as $row) {
                        if ($row['estado'] == 0) {
                            $estado = '<span class="badge bg-danger">Inactivo</span>';
                        }
                    ?>
                        <tr>
                            <td><?php echo $row['id']; ?></td>
                            <td><?php echo $row['nombre']; ?></td>
                            <td><?php echo $row['telefono']; ?></td>
                            <td><?php echo $row['direccion']; ?></td>
                            <td><?php echo $estado; ?></td>
                            <td>
                                    <button class="btn btn-outline-primary" type="button" onclick="btnReingresarCli(<?php echo $row['id'] ?>);"><i class="fas fa-trash-restore"></i></button>
                            </td>
                        </tr>
                    <?php } ?>
                </tbody>
            </table>
        </div>
    </div>
</div>
<?php include "Views/Templates/footer.php"; ?>

Function Calls

None

Variables

None

Stats

MD5 9ee3310d7ad19c1f1ea9d96bef32c3ea
Eval Count 0
Decode Time 66 ms