Jump to content

NewGenerationTB

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

NewGenerationTB's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. [!--quoteo(post=364175:date=Apr 12 2006, 03:52 PM:name=kenrbnsn)--][div class=\'quotetop\']QUOTE(kenrbnsn @ Apr 12 2006, 03:52 PM) [snapback]364175[/snapback][/div][div class=\'quotemain\'][!--quotec--] What is before line 5. Post the whole inculde file. PHP sometime prints the line where it gives up on trying to figure out what you meant, not the line where the error really occured. Ken [/quote] following is the home.php: ---------------------------- /* <?php include('header.inc'); require ('page.inc'); $homepage = new Page(); $homepage->content = '<p><marquee behavior = "alternate">Welcome to Cholsum</marquee></p> <!--side menu --> <table width="100%" bgcolor="green" cellpadding="4" cellspacing="4" border="0"> <tr > <td width="25%"> <img src="logo.gif" alt="" height=20 width=20> <span class="menu">Home</span> </td> <td rowspan="4"> <font color="Green"> Hello World!<br> We provide you with the latest and most reliable news, stay tuned! We provide you with the latest and most reliable news, stay tuned! We provide you with the latest and most reliable news, stay tuned! We provide you with the latest and most reliable news, stay tuned! We provide you with the latest and most reliable news, stay tuned! We provide you with the latest and most reliable news, stay tuned! We provide you with the latest and most reliable news, stay tuned! </font> </td> </tr> <tr> <td width="25%"> <img src="side - logo.gif" alt="" height=20 width=20> <span class="menu">Contact</span> </td> </tr> <tr> <td width="25%"> <img src="side-logo.gif" alt="" height=20 width=20> <span class="menu">Services</span> </td> </tr> <tr> <td width="25%"> <img src="side-logo.gif" alt="" height=20 width=20> <span class="menu">Site Map</span> </td> </tr> <tr> <td width="25%"> <img src="side-logo.gif" alt="" height=20 width=20> <span class="menu">News</span> </td> </tr> <tr> <td width="25%"> <img src="side-logo.gif" alt="" height=20 width=20> <span class="menu">Forum</span> </td> </tr> <tr> <td width="25%"> <img src="side-logo.gif" alt="" height=20 width=20> <span class="menu">Guess Book</span> </td> </tr> <tr> <td width="25%"> <img src="side-logo.gif" alt="" height=20 width=20> <span class="menu">Chat Room</span> </td> <tr> <td width="25%"> <img src="side-logo.gif" alt="" height=20 width=20> <span class="menu">Tibet</span> </td> </tr> </tr> </table>'; $homepage->Display(); ?> */ Follwoing is the page.inc ----------------------------- /* <?php class Page { // class Page's attributes public $content; public $title = 'Cholsum.Com'; public $keywords = 'any words goes here to search'; public $buttons = array( 'Home' => 'home.php', 'Forum' => 'forum.php', 'Services' => 'services.php', 'Site Map' => 'map.php', 'Contact' => 'contact.php', ); // class Page's operations 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=\"$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>Cholsum Online</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"; //calculate button size $width = 100/count($buttons); while (list($name, $url) = each($buttons)) { $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 ='$width%'> <a href ='$url'> <img src ='logo.gif' alt ='$name' border ='0' /></a> <a href ='$url'><span class='menu'>$name</span></a></td>"; } else { echo "<td width ='$width%'> <img src ='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">Hello</p> <p class="foot">Hello</p> </td> </tr> </table> <?php } } ?> */
  2. [!--quoteo(post=363958:date=Apr 12 2006, 05:51 AM:name=bonaparte)--][div class=\'quotetop\']QUOTE(bonaparte @ Apr 12 2006, 05:51 AM) [snapback]363958[/snapback][/div][div class=\'quotemain\'][!--quotec--] Check the PHP version on your server. Public, private and protected properties were added in PHP 5. Previous versions of PHP will throw an error. [/quote] Thanks everyone. The problem is still not solved. and the problem is with public $content; because it is the line 5 in my page.inc. The server runs php version 4.4.1. I think that is the reason. Can anyone suggest solution for it? Thanks a lot! Thanks everyone for trying to help me out! NG
  3. [!--quoteo(post=363958:date=Apr 12 2006, 05:51 AM:name=bonaparte)--][div class=\'quotetop\']QUOTE(bonaparte @ Apr 12 2006, 05:51 AM) [snapback]363958[/snapback][/div][div class=\'quotemain\'][!--quotec--] Check the PHP version on your server. Public, private and protected properties were added in PHP 5. Previous versions of PHP will throw an error. [/quote] Thanks everyone. The problem is still not solved. and the problem is with public $content; because it is the line 5 in my page.inc. Please tell me the bug if you can think of any solutions, will be very appreciative. Thanks everyone for trying to help me out! NG
  4. Here is my question. I am running this code on my server. It say there is a syntax error in here. The code is /* 5 public $content; 6 public $title = 'Cholsum.Com'; 7 public $keywords = 'Hello World'; 8 public $buttons = array( 'Home' => 'home.php', 'Forum' => 'forum.php', 'Index' => 'index.php', 'Menu' => 'menu.php', 'Contact' => 'contact.php', */ The error produced is : [b]Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in d:\domains\cholsum.com\wwwroot\page.inc on line 5[/b]
  5. Thank You folks, the problem is still the same. Let me post the entire code down there. [!--coloro:#FF0000--][span style=\"color:#FF0000\"][!--/coloro--]<?php include_once('header.inc'); echo '<img src = \"map.png\">'; echo '<img src = "map.png">'; echo "<img src = "map.png">"; echo '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width=375 height=50> <param name=movie value="TashiDelek.swf"> <param name=quality value=high> <param name=bgcolor value=#FFFFFF> <param name=wmode value=window> <param name=loop value=false> <param name=menu value=false> <embed src="TashiDelek.swf" quality=high bgcolor=#FFFFFF width=375 height=50 wmode=window loop=false menu=false type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"> </embed></object>'; ?>[!--colorc--][/span][!--/colorc--][b] None of the above code seems working in Zend php editor! Note: all the graphics and php files are in the same folder.
  6. Let me give an example, [b]<?php <img src = "me.png"> ?>[/b] Or [b]<?php Echo <img src = "me.png"> ?>[/b] note: both of above codes did not work! Or [b]<html> <head> wazzup </head> <body> Thank You for your help! <img src = "me.png"> <object width="50" height="50"> <param name="movie" value="somefilename.swf"> <embed src="somefilename.swf" width="50" height="50"> </embed> </object> </body> </html>[/b] NOTE: I saved above html code saved as [!--coloro:#FF6666--][span style=\"color:#FF6666\"][!--/coloro--]header.inc[!--colorc--][/span][!--/colorc--] I then I called it into php in this manner [b]<?php include('head.inc'); >[/b] However in ZEND php editor shows the flash movie, but the total scene is white and nothing is on there. Regarding the pciture, it just shows as if php cannot load the pictures. I will readdy appreciate you guys help. I have been reading the php book, but they do not talk about graphic uplaod like we do in html. I did not find any helpful in information online. Hopefully, here I will get gurus' help. Thank You in advance! NewGenerationTB
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.