codeController.php 285 Bytes
<?php

Class CodeController Extends baseController {

//protected $_navig = array('name'=>"info");

public function index()
{
	$data_code = trim($this->getParam['code']);
	$code = new Code($this->lang);
	$id = $code->getID_code($data_code);
	$this->tpl->assign('code_id',$id);
}

}
?>