services.php

来自「php源码 php源码参考」· PHP 代码 · 共 35 行

PHP
35
字号
<?php   require ('page.inc');    class ServicesPage extends Page  {    private $row2buttons = array( 'Re-engineering' => 'reengineering.php',                              'Standards Compliance' => 'standards.php',                              'Buzzword Compliance' => 'buzzword.php',                               'Mission Statements' => 'mission.php'                            );    public function Display()    {      echo "<html>\n<head>\n";      $this -> DisplayTitle();      $this -> DisplayKeywords();      $this -> DisplayStyles();      echo "</head>\n<body>\n";      $this -> DisplayHeader();      $this -> DisplayMenu($this->buttons);      $this -> DisplayMenu($this->row2buttons);      echo $this->content;      $this -> DisplayFooter();      echo "</body>\n</html>\n";    }  }  $services = new ServicesPage();  $services -> content ='<p>At TLA Consulting, we offer a number of services.               Perhaps the productivity of your employees would              improve if we re-engineered your business.             Maybe all your business needs is a fresh mission              statement, or a new batch of buzzwords.</p>';  $services -> Display();?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?