Skip to content

Instantly share code, notes, and snippets.

View raihanba13's full-sized avatar

raihanba13

View GitHub Profile
@raihanba13
raihanba13 / dropdown.css
Created March 3, 2018 02:37 — forked from YoSmudge/dropdown.css
Pure HTML/CSS Dropdown Select Menu
/*Add cursor to the spans and labels*/
form .mycssdropdown li label, form .mycssdropdown li label span{
cursor:pointer;
}
/*By default, hide the spans*/
form .mycssdropdown li label span{
display:none;
}
@raihanba13
raihanba13 / password_hash_example.php
Created July 11, 2017 14:19 — forked from jeremykendall/password_hash_example.php
Example of password hashing and verification with password_hash and password_verify. This script is intended to be run from the command line like so: 'php -f password_hash_example.php'
<?php
/**
* Example of password hashing and verification with password_hash and
* password_verify
*
* This script is intended to be run from the command line
* like so: 'php -f password_hash_example.php'
*
* @see http://stackoverflow.com/a/20809916/1134565