This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stop(); | |
var errors:Array = new Array(); | |
function clearForm() { | |
name_ti.text=""; | |
email_ti.text=""; | |
state.text=""; | |
zip_ti.text=""; | |
errorLog_lb.removeAll(); | |
errors.length = o; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Класс работы с сессиями | |
*/ | |
class Session | |
{ | |
/** | |
* Обьект экземпляр классa Session | |
*/ | |
protected static $Session; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Класс работы с сессиями | |
* | |
* Использование | |
* session::getInstance()->start(); | |
* dump(session::getInstance()->get('qwer')); | |
* session::getInstance()->set('qwer', 'qwer'); | |
* 1 параметр $key - наименование сессии | |
* 2 параметр $value - значени сессии |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Класс работы с сессиями | |
* | |
* Использование | |
* session::getInstance()->start(); | |
* dump(session::getInstance()->get('qwer')); | |
* session::getInstance()->set('qwer', 'qwer'); | |
* 1 параметр $key - наименование сессии | |
* 2 параметр $value - значени сессии |