Skip to content

Instantly share code, notes, and snippets.

View saraclima's full-sized avatar

Sara Lima saraclima

  • https://www.linkedin.com/in/climasara/
View GitHub Profile
@saraclima
saraclima / xdebug.php
Created November 2, 2017 12:48
xdebug
<?php
/**
* Created by PhpStorm.
* User: romain
* Date: 22/02/16
* Time: 10:13
*/
$students = [
"Emmanuel" => 42,
@saraclima
saraclima / Personne.php
Created November 3, 2017 11:18
Quete_Poo
<?php
class Personne{
public $nom;
public $prenom;
public $adresse;
@saraclima
saraclima / mcd.png
Last active November 6, 2017 15:21
Intro
mcd
@saraclima
saraclima / interagir_sql_sara.sql
Created November 8, 2017 16:43
Quete BDD numero 2
-- MySQL dump 10.13 Distrib 5.7.20, for Linux (x86_64)
--
-- Host: localhost Database: db_name
-- ------------------------------------------------------
-- Server version 5.7.20-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 */;
<h1>Uploader fichier</h1>
<form action="upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="fichiers[]" multiple="multiple" /> <br>
<input type="submit" value="Envoyer le fichier" />