Git Product home page Git Product logo

cakephp-test's Introduction

UbiTransProject

Consignes :

Il s'agirait de faire une mini application web avec le framework CakePhp 2 pour :

  • Gérer des élèves (Créer / modifier / supprimer), nom / prénom / date de naissance
  • Pouvoir leur ajouter des notes (ajouter uniquement), une "note" étant : matière (champ texte, ex : Français, Math) + un chiffre compris entre 0 et 20.

Route : localhost/cakephp/etudiants/


DATABASE :

-- -- Base de données : test_cake


-- -- Structure de la table etudiants

CREATE TABLE etudiants ( id int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, nom varchar(55) NOT NULL UNIQUE, prenom varchar(55) NOT NULL, dateNaissance date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1;


-- -- Structure de la table notes

CREATE TABLE notes ( id int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT, nomMatiere varchar(55) NOT NULL, etudiant_id int(11) NOT NULL, note int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1;


TODO :

Voici une liste de suggestions et d'ajouts éventuels :

Ajouts : Créer fonction validate : Check unique > Vérifie que le nom de la matiere et de l'étudiant n'existe pas Créer un trigger pour vérifier coté serveur, l'ajout des notes et des noms Vérifier que l'étudiant ne possède pas de notes

Améliorations: Ajouter un menu de navigation Améliorer la DB, rajouter des triggers, et des verroux. Améliorer les routes.


Répertoires de travail :

Model

-Note.php -Etudiant.php

View

-Etudiants --add_note.ctp --edit_note.ctp --edit_student.ctp --add_student.ctp --index.ctp --notes_etudiant.ctp

Controller

-EtudiantsController.php

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.