123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- $view
- ->fetch
- (
- '.question-item',
- 'company/info.question',
- array
- (
- 'self' => array
- (
- 'html' => '<{$v.name}>',
- 'href' => '#question<{$v.id}>',
- ),
- )
- )
- ->fetch
- (
- '.item',
- 'company/info.question',
- array
- (
- 'self' => array
- (
- 'id' => 'question<{$v.id}>',
- ),
- '.item-title' => array
- (
- 'html' => '· <{$v.name}>',
- ),
- '.item-con' => array
- (
- 'html' => '<{$v.content}>',
- ),
- )
- );
- include('inc/foot.php');
- include('inc/common.php');
|