Skip to content

Instantly share code, notes, and snippets.

View gabrieljmj's full-sized avatar
💻
Working from home

Gabriel Jacinto gabrieljmj

💻
Working from home
  • Zig
  • Itajobi, SP, Brazil
View GitHub Profile
@gabrieljmj
gabrieljmj / Session.class.php
Created September 19, 2013 19:28
A helper to work with sessions in php
<?php
class Session{
public static function add( $name, $value ){
$_SESSION[ $name ] = $value;
}
public static function del( $name ){
unset( $_SESSION[ $name ] );
}