1234567891011121314151617181920212223 |
- <?php
- define ( 'TABLE_PREFIX', 'zhask_' );
- define ( 't_user', TABLE_PREFIX . 'user' );
- define ( 't_category', TABLE_PREFIX . 'category' );
- define ( 't_question', TABLE_PREFIX . 'question' );
- define ( 't_credit', TABLE_PREFIX . 'credit' );
- define ( 't_usergroup', TABLE_PREFIX . 'usergroup' );
- define ( 't_answer', TABLE_PREFIX . 'answer' );
- define ( 't_message', TABLE_PREFIX . 'message' );
- define ( 't_session', TABLE_PREFIX . 'session' );
- define ( 't_userlog', TABLE_PREFIX . 'userlog' );
- define ( 't_crontadstatus', TABLE_PREFIX . 'crontad_status' );
- define ( 't_authissue', TABLE_PREFIX . 'auth_issue' );
- define ( 't_credit3log', TABLE_PREFIX . 'credit3_log' );
- define ( 't_vipquestion', TABLE_PREFIX . 'vip_question' );
- define ( 't_vipanswer', TABLE_PREFIX . 'vip_answer' );
- define ( 't_fund', TABLE_PREFIX . 'fund' );
- define ( 't_article', TABLE_PREFIX . 'article' );
- define ( 't_discuss', TABLE_PREFIX . 'discuss' );
- define ( 't_bankjorunal', TABLE_PREFIX . 'bank_jorunal' );
- define ( 't_emailconfig', TABLE_PREFIX . 'email_config' );
- define ( 't_examine', TABLE_PREFIX . 'examine' );
- ?>
|