Réalisation d'un annuaire avec un moteur de recherche pour mettre en relation des profils de membres avec des profils d'entreprises. L'objectif de l'annuaire est de faciliter la mise en relation d'étudiants et diplômés des Grandes Ecoles avec des entreprises créees ou installées au Pays Basque, afin de permettre le retour de ces derniers dans leur région d'origine.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Personne | |
| { | |
| public $name; | |
| public $surname; | |
| public $adress; | |
| public $birthdate; | |
| public function __construct($name,$surname,$adress,$birthdate) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- MySQL dump 10.13 Distrib 5.7.23, for Linux (x86_64) | |
| -- | |
| -- Host: localhost Database: data_formation_wcs | |
| -- ------------------------------------------------------ | |
| -- Server version 5.7.23-0ubuntu0.16.04.1 | |
| /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
| /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
| /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
| /*!40101 SET NAMES utf8 */; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- MySQL dump 10.13 Distrib 5.7.23, for Linux (x86_64) | |
| -- | |
| -- Host: localhost Database: school | |
| -- ------------------------------------------------------ | |
| -- Server version 5.7.23-0ubuntu0.16.04.1 | |
| /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
| /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
| /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
| /*!40101 SET NAMES utf8 */; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class TimeTravel{ | |
| public $start; | |
| public $end; | |
| public function __construct($start,$end){ | |
| $this->start = $start; | |
| $this->end = $end; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Hello.js</title> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=Edge"> | |
| </head> | |
| <body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Hello.js</title> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=Edge"> | |
| </head> | |
| <body> | |
| <?php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| const DESTINATION_PATH = 'uploads'; | |
| const SOURCE_PATH = 'source'; | |
| const SEPARATOR = '/'; | |
| const MIME_TYPE = array( | |
| 0 => "image/jpg", | |
| 1 => "image/png", | |
| 2 => "image/jpeg", | |
| 3 => "image/gif" |
Début bonbons maximum achetés ( réel argent, réel prix)
Si argent > 0 ET prix > 0
bonbons achetés = 0
Tant que argent >= prix
bonbons achetés ← bonbons achetés + 1