Skip to content

Instantly share code, notes, and snippets.

View cybromujeeb's full-sized avatar
🎯
Focusing

Mujeeb Rahman cybromujeeb

🎯
Focusing
View GitHub Profile
@cybromujeeb
cybromujeeb / filemanager.php
Created November 8, 2019 12:39 — forked from heiswayi/fm.php
Single PHP File Manager Script - Screenshot: https://i.imgur.com/4OtrKUz.png
<?php
/**
* File Manager Script
*/
// Default language ('en' and other from 'filemanager-l10n.php')
$lang = 'en';
// Auth with login/password (set true/false to enable/disable it)
$use_auth = true;
<?php
//created by mujeeb rahman https://cybrohosting.com
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
//export sql mysql shell
$database = 'ffmpeg';
$user = 'root';
$pass = 'mujeeb123';