Skip to content

Instantly share code, notes, and snippets.

View eslamene's full-sized avatar
🏠
Working from home

Eslam Negm ElDen eslamene

🏠
Working from home
View GitHub Profile
<?php
Class Keygen {
private $serial;
private function randChar($length = 8) {
$characters = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
$string = '';
for ($p = 0; $p < $length; $p++) {