mirror of
https://github.com/Aviortheking/Blog_IMIE.git
synced 2025-04-23 11:22:12 +00:00
Merge branch 'master' of gitlab.com:aviortheking/blog_imie
This commit is contained in:
commit
016d11864a
16
project/assets/php/handler.php
Normal file → Executable file
16
project/assets/php/handler.php
Normal file → Executable file
@ -1,10 +1,10 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Fichier qui va gerer la creation de la page et la redirection au cas ou */
|
|
||||||
|
|
||||||
ini_set('display_errors', 'On');
|
ini_set('display_errors', 'On');
|
||||||
|
|
||||||
// var_dump($_SERVER);
|
// var_dump($_SERVER);
|
||||||
|
|
||||||
|
//renvoie vers le fichier css si il est demandé
|
||||||
if(endsWith($_GET["page"], ".css")) {
|
if(endsWith($_GET["page"], ".css")) {
|
||||||
echo file_get_contents("../css/style.css");
|
echo file_get_contents("../css/style.css");
|
||||||
die;
|
die;
|
||||||
@ -17,6 +17,11 @@ if(endsWith($_GET["page"], ".js")) {
|
|||||||
die;
|
die;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//va cherche l'image uploader
|
||||||
|
if(false) {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//rajout d'un / a la fin (parceque c'est jolie)
|
//rajout d'un / a la fin (parceque c'est jolie)
|
||||||
if($_GET["page"] != "" && !endsWith($_GET["page"], "/")) {
|
if($_GET["page"] != "" && !endsWith($_GET["page"], "/")) {
|
||||||
header("Location: /".$_GET["page"]."/");
|
header("Location: /".$_GET["page"]."/");
|
||||||
@ -29,12 +34,13 @@ if($_GET['page'] == '') {
|
|||||||
$_GET['page'] = 'index';
|
$_GET['page'] = 'index';
|
||||||
}
|
}
|
||||||
|
|
||||||
// é
|
|
||||||
|
|
||||||
// var_dump($_POST);
|
|
||||||
// var_dump($_GET);
|
|
||||||
// die;
|
// die;
|
||||||
|
|
||||||
|
if($_GET["page"] == "test") {
|
||||||
|
include_once "test.php";
|
||||||
|
die;
|
||||||
|
}
|
||||||
|
|
||||||
include_once "tagHandler.php";
|
include_once "tagHandler.php";
|
||||||
$pokemon = loadTags("../html/".$_GET["page"].".html", false);
|
$pokemon = loadTags("../html/".$_GET["page"].".html", false);
|
||||||
// var_dump(mb_detect_encoding($pokemon));
|
// var_dump(mb_detect_encoding($pokemon));
|
||||||
|
57
project/assets/php/test.php
Executable file
57
project/assets/php/test.php
Executable file
@ -0,0 +1,57 @@
|
|||||||
|
<?php
|
||||||
|
var_dump($_POST);
|
||||||
|
$target_dir = dirname(__FILE__, 3) . "/uploads/".date("Y")."/".date("m")."/";
|
||||||
|
|
||||||
|
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
|
||||||
|
$uploadOk = 1;
|
||||||
|
$imageFileType = strtolower(pathinfo($target_file, PATHINFO_EXTENSION));
|
||||||
|
// Check if image file is a actual image or fake image
|
||||||
|
if(isset($_POST["upload"])) {
|
||||||
|
$check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
|
||||||
|
if($check !== false) {
|
||||||
|
echo "File is an image - " . $check["mime"] . ".";
|
||||||
|
$uploadOk = 1;
|
||||||
|
} else {
|
||||||
|
echo "File is not an image.";
|
||||||
|
$uploadOk = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Check if file already exists
|
||||||
|
if (file_exists($target_file)) {
|
||||||
|
echo "Sorry, file already exists.";
|
||||||
|
$uploadOk = 0;
|
||||||
|
}
|
||||||
|
// Check file size
|
||||||
|
if ($_FILES["fileToUpload"]["size"] > 500000) {
|
||||||
|
echo "Sorry, your file is too large.";
|
||||||
|
$uploadOk = 0;
|
||||||
|
}
|
||||||
|
// Allow certain file formats
|
||||||
|
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
|
||||||
|
&& $imageFileType != "gif" ) {
|
||||||
|
echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
|
||||||
|
$uploadOk = 0;
|
||||||
|
}
|
||||||
|
// Check if $uploadOk is set to 0 by an error
|
||||||
|
if ($uploadOk == 0) {
|
||||||
|
echo "Sorry, your file was not uploaded.";
|
||||||
|
// if everything is ok, try to upload file
|
||||||
|
} else {
|
||||||
|
if(!is_dir($target_dir)) {
|
||||||
|
mkdir($target_dir, 0777, true);
|
||||||
|
}
|
||||||
|
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
|
||||||
|
echo "The file ". basename($_FILES["fileToUpload"]["name"]). " has been uploaded.";
|
||||||
|
} else {
|
||||||
|
echo "Sorry, there was an error uploading your file.";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
<form action="/test/" method="post" enctype="multipart/form-data">
|
||||||
|
Select image to upload:
|
||||||
|
<input type="file" name="fileToUpload" id="fileToUpload">
|
||||||
|
<input type="submit" value="i-play-pokemon-go-everyday" name="upload">
|
||||||
|
</form>
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user