g

syntex error 질문입니다.(초초보)

· 2008-02-09 (토) 10:08:01 · 2978 · 2

아래 소스를 실행해보니 다음과 같은 에러가 나는데 어디가 잘못되었는지 모르겠어요.
도와주세요. 소스는 "성공적인 웹 프로그래밍 PHP와MySQL"제3판의 소스입니다.

에러문구는
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ',' or ';' in C:\APM_Setup\htdocs\chapter6\page.inc on line 116

=================
아래 : page.inc 소스
=================

<?php
class Page
{
  // Page 클래스의 속성
  public $content;
  public $title = 'TLA Consulting Pty Ltd';
  public $keywords = 'TLA Consulting, Three Letter Abbreviation,
                   some of my best friends are search engines';
  public $buttons = array( 'Home'     => 'home.php',
                        'Contact'  => 'contact.php',
                        'Services' => 'services.php',
                        'Site Map' => 'map.php'
                      );

  // Page 클래스의 연산
  public function __set($name, $value)
  {
    $this->$name = $value;
  }

  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);
    echo $this->content;
    $this -> DisplayFooter();
    echo "</body>\n</html>\n";
  }

  public function DisplayTitle()
  {
    echo '<title> '.$this->title.' </title>';
  }

  public function DisplayKeywords()
  {
    echo "<meta name=\"keywords\" content=\"".
         "htmlentities($this->keywords)\" />";
  }

  public function DisplayStyles()
  {
?>  
<!--
  <style>
    h1 {color:white; font-size:24pt; text-align:center;
        font-family:arial,sans-serif}
    .menu {color:white; font-size:12pt; text-align:center;
           font-family:arial,sans-serif; font-weight:bold}
    td {background:black}
    p {color:black; font-size:12pt; text-align:justify;
       font-family:arial,sans-serif}
    p.foot {color:white; font-size:9pt; text-align:center;
            font-family:arial,sans-serif; font-weight:bold}
    a:link,a:visited,a:active {color:white}
  </style>
-->
<?php
  }

  public function DisplayHeader()
  {
?>  
  <table width="100%" cellpadding ="12" cellspacing ="0" border ="0">
  <tr bgcolor ="black">
    <td align ="left"><img src = "logo.gif" /></td>
    <td>
        <h1>TLA Consulting Pty Ltd</h1>
    </td>
    <td align ="right"><img src = "logo.gif" /></td>
  </tr>
  </table>
<?php
  }

  public function DisplayMenu($buttons)
  {
    echo "<table width='100%' bgcolor='white' cellpadding='4'
                cellspacing='4'>\n";
    echo "  <tr>\n";

 //버튼의 크기를 계산한다.
    $width = 100/count($buttons);

    foreach ($buttons as $name=>$url)
    {
      $this -> DisplayButton($width, $name, $url, !$this->IsURLCurrentPage($url));
    }
    echo "  </tr>\n";
    echo "</table>\n";
  }

  public function IsURLCurrentPage($url)
  {
    if(strpos($_SERVER['PHP_SELF'], $url )==false)
    {
      return false;
    }
    else
    {
      return true;
    }
  }

  public function DisplayButton($width, $name, $url, $active = true)
  {
    if ($active)
    {
      echo "<td width ='".htmlentities($width)."%'>
            <a href ='".htmlentities($url)"'>
            <img src ='s-logo.gif' alt ='".htmlentities($name)"' border ='0' /></a>
            <a href ='$url'><span class='menu'>$name</span></a></td>";
    } 
    else
    {
      echo "<td width ='".htmlentities($width)"%'>
            <img src ='side-logo.gif'>
            <span class='menu'>$name</span></td>";
    } 
  }

  public function DisplayFooter()
  {
?>
    <table width = "100%" bgcolor ="black" cellpadding ="12" border ="0">
    <tr>
      <td>
        <p class="foot">© TLA Consulting Pty Ltd.</p>
        <p class="foot">Please see our
                      <a href ="legal.php">legal information page</a></p>
      </td>
    </tr>
    </table>
<?php
  }
}
?>

|

댓글 2개

2008-02-11 (월) 08:56:08
여기는 질문하는 게시판이 아닌듯합니다.

<img src ='s-logo.gif' alt ='".htmlentities($name)"' border ='0' /></a>
->
<img src ='s-logo.gif' alt ='".htmlentities($name)."' border ='0' /></a>
이렇게 해주시면 되겠네요
2008-02-14 (목) 09:10:48
본 게시물은 질문게시판으로 이동되었습니다..
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

8,188건
+
제목 글쓴이 날짜 조회
08-04-17 조회 4,314
08-03-14 조회 3,202
08-03-08 조회 3,022
08-03-06 조회 2,993
08-03-03 조회 4,285
08-02-20 조회 2,970
08-02-15 조회 3,884
08-02-11 조회 5,041
08-02-09 조회 5,751
08-02-05 조회 3,816
08-01-14 조회 6,627
08-01-11 조회 7,058
08-01-04 조회 1.1만
07-12-10 조회 4,963
07-12-10 조회 3,829
07-12-04 조회 3,370
07-11-29 조회 3,545
07-11-27 조회 3,902
07-11-23 조회 4,502
07-11-23 조회 4,230
07-11-13 조회 4,359
07-10-19 조회 4,817
07-10-17 조회 5,875
07-10-03 조회 4,942
07-10-02 조회 8,796
07-10-02 조회 4,453
07-09-09 조회 3,418
07-07-29 조회 4,305
07-07-28 조회 4,533
07-07-26 조회 4,439
07-06-19 조회 1.1만
07-06-17 조회 3,602
07-06-15 조회 4,100
07-05-31 조회 3,159
07-05-09 조회 5,315
07-05-04 조회 3,163
07-05-04 조회 3,510
07-04-28 조회 6,408
07-04-26 조회 4,648
07-04-14 조회 5,294
07-04-13 조회 3,712
07-04-12 조회 5,907
07-03-27 조회 3,844
07-03-19 조회 3,534
07-03-13 조회 4,616
07-03-07 조회 4,769
07-03-07 조회 3,281
07-02-25 조회 3,638
07-02-21 조회 4,529
07-02-18 조회 5,047
07-02-12 조회 3,393
07-02-02 조회 4,508
07-01-28 조회 6,121
07-01-27 조회 5,628
07-01-25 조회 3,994
07-01-21 조회 4,626
07-01-19 조회 6,571
07-01-19 조회 8,028
07-01-13 조회 3,484
07-01-09 조회 5,123
06-12-27 조회 3,525
06-11-24 조회 3,646
06-11-18 조회 4,163
06-10-17 조회 5,483
06-10-01 조회 4,404
06-09-26 조회 4,285
06-09-25 조회 4,609
06-09-25 조회 4,315
06-09-22 조회 4,850
06-09-22 조회 3,621
06-09-22 조회 4,451
06-09-13 조회 5,280
06-08-27 조회 4,883
06-08-26 조회 6,262
06-08-26 조회 5,569
06-08-23 조회 5,064
06-07-28 조회 7,165
06-07-24 조회 4,620
06-07-23 조회 5,401
06-07-21 조회 5,161
06-07-19 조회 3,042
06-07-19 조회 2,955
06-07-11 조회 3,615
06-07-11 조회 3,908
06-07-11 조회 4,476
06-07-11 조회 4,941
06-07-11 조회 3,567
06-07-11 조회 9,189
06-07-11 조회 4,048
06-07-11 조회 3,281
06-07-11 조회 3,331
06-07-11 조회 3,258
06-07-11 조회 3,060
06-07-07 조회 4,104
06-06-25 조회 4,455
06-06-15 조회 4,448
06-06-14 조회 4,940
06-06-11 조회 3,522
06-06-10 조회 3,903
06-06-09 조회 3,485