1234567891011121314 |
- <?php
- /**
- * 获取投票代码
- *
- * @version $Id: vote_getcode.php 1 23:54 2010年7月20日Z tianya $
- * @package DedeCMS.Administrator
- * @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
- * @license http://help.dedecms.com/usersguide/license.html
- * @link http://www.dedecms.com
- */
- require_once(dirname(__FILE__)."/config.php");
- require_once(DEDEINC."/dedevote.class.php");
- $aid = isset($aid) && is_numeric($aid) ? $aid : 0;
- include DedeInclude('templets/vote_getcode.htm');
|