Skip to content

Instantly share code, notes, and snippets.

@fayqLs
Last active March 27, 2023 19:16
Show Gist options
  • Save fayqLs/d144918de4fbc100195447e9c6403fac to your computer and use it in GitHub Desktop.
Save fayqLs/d144918de4fbc100195447e9c6403fac to your computer and use it in GitHub Desktop.
DEFINE O VALOR PARA A SESSÃO TSession
<?php
$nome = 'FABRICIO';
TSession::setValue('nome', $nome); # CRIA O VALOR
$nome = TSession::getValue('nome'); # PEGA O VALOR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment