- Timestamp:
- Jun 19, 2012, 12:22:12 PM (12 years ago)
- Location:
- trunk/class
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/class/Form.php
r13 r16 12 12 protected $title = ''; 13 13 14 function __construct($inputs,$title,$action = ' ',$method = 'post')14 function __construct($inputs,$title,$action = '?',$method = 'post') 15 15 { 16 16 $this->action = $action; -
trunk/class/Message.php
r14 r16 40 40 $arraytest = $_POST; 41 41 } else $arraytest = $_GET; 42 42 43 if (array_key_exists($this->key,$arraytest)) { 43 44 if ($this->par0 == -1) return call_user_func(array($this->obj,$this->method_name)); -
trunk/class/Messages.php
r14 r16 35 35 $Login = new Message('post','LoginUser',$User,'Login','LoginUser','LoginPass'); 36 36 $Login->Activate(); 37 37 38 $Regin = new Message('post','RegUser',$User,'Register','Email','RegUser','RegPass','RegPass2'); 38 39 echo ($Regin->Activate()); 40 41 $Logout = new Message('get','logout',$User,'Logout'); 42 $Logout->Activate(); 39 43 } 40 44
Note:
See TracChangeset
for help on using the changeset viewer.