Calculate Total Working Days using PHP class

/** Calculate working days class**/ class calculateWorkingDays { private $holidays = array(); private $holidates = array(); private $totalWorkingDays = 0; /** * Constructor */...

Convert Folder to Zip using PHP class

<?php class FolderToZipConverter { private $_isRecursiveVar = false; private $_foldersList = array(); private $_zipFileFilePath = ”; private $_zipFile; /** * Constructor */...

MYSQL basic for command line Part Two

Ok lets start with Part Two…In part one you got enough information how to start with SQL command line. So keep walking and try out other major basic stuff of SQL. I am providing...

MYSQL basic for command line Part One

For a beginner there is a list of all basic mysql commands. If you are working on command prompt or shell then you should have to learn these basics. I am listing some of basic not...

MySqli Connection Class

class Db_Mysqli { static $hostname; static $username; static $password; static $port; static $database; static $connection; /** * * @param String $hostname * @param String $username...