Skip to content

Instantly share code, notes, and snippets.

View KOUISAmine's full-sized avatar

Amine KOUIS KOUISAmine

View GitHub Profile
@KOUISAmine
KOUISAmine / image.sql
Created February 8, 2017 00:39
Simple upload en drag and drop avec MySQLi
--
-- Database: `image`
--
CREATE TABLE `photo` (
`photo_id` int(11) NOT NULL,
`photo_name` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
@KOUISAmine
KOUISAmine / image_upload.php
Created February 8, 2017 00:34
Simple upload en drag and drop avec MySQLi
<?php
$conn = new mysqli('localhost', 'root', '', 'image');
if(ISSET($_POST['save'])){
if($_FILES['image']['name'] == ""){
echo '<script>alert("Veuillez selectionner une image")</script>';
echo '<script>window.location = "index.php"</script>';
}else{
$image = addslashes(file_get_contents($_FILES['image']['tmp_name']));
$image_name = addslashes($_FILES['image']['name']);
$image_size = getimagesize($_FILES['image']['tmp_name']);
@KOUISAmine
KOUISAmine / result.php
Created February 8, 2017 00:32
Simple upload en drag and drop avec MySQLi
<!DOCTYPE html>
<html lang = "en">
<head>
<link rel = "stylesheet" type = "text/css" href = "css/bootstrap.css"/>
<link rel = "stylesheet" type = "text/css" href = "css/style.css"/>
<meta charset = "UTF-8" name= "viewport" content = "width=device-width, initial-scale=1" />
</head>
<body>
<nav class = "navbar navbar-default">
<div class = "container-fluid">
@KOUISAmine
KOUISAmine / index.html
Created February 8, 2017 00:09
Simple-upload-en-drag-and-drop-avec-mysqli
<!DOCTYPE html>
<html lang = "en">
<head>
<link rel = "stylesheet" type = "text/css" href = "css/bootstrap.css"/>
<link rel = "stylesheet" type = "text/css" href = "css/style.css"/>
<meta charset = "UTF-8" name= "viewport" content = "width=device-width, initial-scale=1" />
</head>
<body>
<nav class = "navbar navbar-default" style="background-color: #337ab7;">
<div class = "container-fluid">