Skip to content

Instantly share code, notes, and snippets.

@dandelionmood
Created March 15, 2010 13:14
Show Gist options
  • Save dandelionmood/332814 to your computer and use it in GitHub Desktop.
Save dandelionmood/332814 to your computer and use it in GitHub Desktop.
<?php
$ms = new SessionMemcached($token_session);
$ms->ecrire('est_connecte', true);
//
// (...)
//
if( $ms->lire('est_connecte') )
{
echo 'Vous êtes bien connecté !';
}
else
{
echo 'Vous n êtes pas connecté ...';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment