| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- class newmatchmaker_c extends Control
- {
- function __construct()
- {
- parent::Control();
- $this->load_model("user");
- }
- function newmatchmaker_c()
- {
- $this->__construct();
- }
- function index_f()
- {
- if(!$_SESSION["user_id"])
- {
- error('',$this->url('login'));
- }
- $this->tpl->assign("sitetitle","发展红娘");
- $this->tpl->assign("uid",$_SESSION["user_id"]);
- // print_r($_SESSION["user_id"]);
- $this->tpl->display("newmatchmaker.".$this->tpl->ext);
-
- }
- function view_f()
- {
- if(!$_SESSION["user_id"])
- {
- error('',$this->url('login'));
- }
- $cid = $this->trans_lib->safe("id");
- //print_r($cid);
- $rs = $this->customer_m->customer_from_id($cid);
- $this->tpl->assign("rs",$rs);
- $this->tpl->display("msg_customer.".$this->tpl->ext);
- }
- }
- ?>
|