We Recommend

Smarty PHP Template Programming And Applications Smarty PHP Template Programming And Applications
Smarty is a templating engine for PHP. Designers who are used to working with HTML files can work with Smarty templates, which are HTML files with simple tags while programmers work with the underlying PHP code. The Smarty engine brings the code and templates together. The result of all this is that designers can concentrate on designing, programmers can concentrate on programming, and they don't need to get in each others way so much.


Posted By

leogiroldi on 07/19/06


Tagged

cookie Shared Objects


Versions (?)


Who likes this?

3 people have marked this snippet as a favorite

jkochis
damarev
bicherele


Shared Objects


Published in: ActionScript 


cookie

  1. _global.grabar_cookie = function (usuario, clave, registro, logueo) {
  2. so = SharedObject.getLocal ("cookie_nombre");
  3. _root.usuario = so.data.usuario = usuario;
  4. _root.clave = so.data.clave = clave;
  5. _root.registro = so.data.registro = registro;
  6. _root.logueo = so.data.logueo = logueo;
  7. so.data.flush ();
  8. };

Report this snippet 

You need to login to post a comment.