This file contains 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> | |
<meta name="robots" content="noindex"> | |
<html> | |
<head> | |
<script src="https://code.jquery.com/jquery.min.js"></script> | |
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Autocloseable Bootstrap alert</title> |
This file contains 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> | |
<meta name="robots" content="noindex"> | |
<html> | |
<head> | |
<script src="http://code.jquery.com/jquery.min.js"></script> | |
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> | |
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> | |
<meta charset="utf-8"> | |
<title>Responsive Jquery Map Vector with Clickeable Department</title> | |
<style id="jsbin-css"> |
This file contains 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 | |
// define variables and set to empty values | |
$nomErr = $emailErr = $objetErr = $messageErr = ""; | |
$nom = $email = $objet = $message = ""; | |
if ($_SERVER["REQUEST_METHOD"] == "POST") { | |
if (empty($_POST["nom"])) { | |
$nomErr = "Nom complet requis"; | |
} else { |
This file contains 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
#-- Found in 2011 -- | |
#-- Ovh DataViewer Perl Script -- | |
#-- This Script Show the dataleak of the Ovh Register Process -- | |
#-- Start | |
#-- Step 1 Generate Random GSM number -- | |
#-- Step 2 Generate Random Target Selection by listed servers -- | |
#-- Step 3 Request the Generated Target/GSM -- | |
#-- Step 4 Store Result on ovh-data.txt or Issue on ovh-dbg.txt -- | |
#-- End | |
#-- Posted @ https://gist.github.com/DamienChiboub/6085725/ |