PHP Classes

File: web/estudante-edit.php

Recommend this page to a friend!
  Classes of Rodrigo Faustino   PHP CRUD Application   web/estudante-edit.php   Download  
File: web/estudante-edit.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP CRUD Application
Show how to create a simple CRUD application
Author: By
Last change:
Date: 6 months ago
Size: 1,394 bytes
 

Contents

Class file image Download
<?php require_once "web/header.php"; ?>

<form name="frmAdd" method="post" action="" id="frmAdd"
    onSubmit="return validate_est_edit();">
    <div id="mail-status"></div>
    <div>
        <label style="padding-top: 20px;">Nome</label> <span
            id="name-info" class="info"></span><br /> <input type="text"
            name="nome" id="nome" class="demoInputBox"
            value="<?php echo $result[0]["nome"]; ?>">
    </div>
    <div>
        <label>Número</label> <span id="roll-number-info"
            class="info"></span><br /> <input type="text"
            name="numero" id="numero" class="demoInputBox"
            value="<?php echo $result[0]["numero"]; ?>">
    </div>
    <div>
        <label>Data de aniversário</label> <span id="dob-info" class="info"></span><br />
        <input type="text" name="data" id="data" class="demoInputBox"
            value="<?php echo $result[0]["data"]; ?>">
    </div>
    <div>
        <label>Classe</label> <span id="class-info" class="info"></span><br />
        <input type="text" name="classe" id="classe" class="demoInputBox"
            value="<?php echo $result[0]["classe"]; ?>">
    </div>
    <div>
        <input type="submit" name="add" id="btnSubmit" value="Salvar" />
    </div>
    </div>
    <script src="web/js/jquery-2.1.1.min.js" ></script>
    <script src="web/js/validador.js" ></script>
    </body>
    </html>