Game Instructions

Tap a tile to toggle its color. When a tile changes nearby tiles may change as well. Each move affect multiple tiles. The target is to turn all tiles into yellow in the fewest steps possible.

Press 'j' to show/hide the game. Press 'i' to show/hide the instructions. Press 't' to show/hide the top score table.

Steps: 0

Top Scores

Name Steps
Press J to toggle the game, I to toggle instructions, and T to toggle the top scores

Congratulations!

You solved the puzzle in 0 steps!

Success!

Score submitted successfully!

Error

Failed to submit score. Please try again.

Logging Messages in Slim Framework PRO

The Slim Framework provides us with the Log object. Writing logging messages involves with calling various functions on that object.

<?php

namespace Com\LifeMichael\Samples;

require 'Slim/Slim.php';

\Slim\Slim::registerAutoloader();

$application = new \Slim\Slim();
$logger = $application->log;
$logger->setEnabled(true);
$logger->setLevel(\Slim\Log::DEBUG);

$environment = \Slim\Environment::getInstance();

$application->get(
    '/simplelogs',
    function ()
    {
        GLOBAL $logger;
        $logger->info("i m now starting the get handling function");
        echo "<data>response</data>";
        $logger->info("i m now ending the get handling function");
    });

$application->run();

?>

The following video clip overviews this code sample, shows its execution and explains each and every part of it.

You can find more video clips, code samples and training material for learning how to use this framework in my free online courses website at http://abelski.lifemichael.com.

Share:

The Beauty of Code

Coding is Art! Developing Code That Works is Simple. Develop Code with Style is a Challenge!

Update cookies preferences