Skip to content

juliogallardo1326/fsc-bb

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

fsc-bb

2012-10-30 - Added the BB SQL into the docs directory Need to change it to match standards and then change the PHP to match that.

2012-11-14 - there is now a holiday class in /common/external/class.holiday.php http://maccrafters.com/home/current-offerings/programming/php-holiday-class/

Example of how to check for weekend is: function isWeekend($date) { return (date('N', strtotime($date)) >= 6); }

2012-11-20 - Adding logging to the project via log4php https://logging.apache.org/log4php/install.html pear channel-discover pear.apache.org/log4php pear install log4php/Apache_log4php

$log->trace("My first message."); // Not logged because TRACE < WARN $log->debug("My second message."); // Not logged because DEBUG < WARN $log->info("My third message."); // Not logged because INFO < WARN $log->warn("My fourth message."); // Logged because WARN >= WARN $log->error("My fifth message."); // Logged because ERROR >= WARN $log->fatal("My sixth message."); // Logged because FATAL >= WARN

New stuff 2012-12-11 http://phpfileuploader.com/ http://www.tizag.com/phpT/fileupload.php

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 85.0%
  • CSS 12.2%
  • PHP 1.8%
  • HTML 0.6%
  • XSLT 0.2%
  • ActionScript 0.1%
  • Other 0.1%