Jump to content

PHP Include Problem


ucherllo

Recommended Posts

I get this error when trying to include header.php and sidebar.php

hParse error: syntax error, unexpected '/' in /home/ucherllo/public_html/index.php on line 26

 

Here are is index.php and includes code.

 

INDEX.PHP

<html>
<head>
<title>Cher LLoyd - UltimateCherLloyd.net - Your newest fan site for everything Cher Lloyd. News, media, photos, and more. </title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta name="description" content="Newest fan site for everything Cher Lloyd" />
<meta name="keywords" content="cher lloyd, cher lloyd fansite, cher lloyd x-factor, fansite, fan site, swagger jagger, playa boi, dub on the track, 2010, 2011, cher lloyd photos, cher lloyd news, cher lloyd media, cher lloyd fan site" />
<meta name="author" content="D"
<meta name="robots" content="index, follow" />
<!-- PUT THIS TAG IN THE head SECTION -->
<script type="text/javascript" src="http://partner.googleadservices.com/gampad/google_service.js">
</script>
<script type="text/javascript">
  GS_googleAddAdSenseService("ca-pub-7892222271864999");
  GS_googleEnableAllServices();
</script>
<script type="text/javascript">
  GA_googleAddSlot("ca-pub-7892222271864999", "FlauntDarkLeader");
</script>
<script type="text/javascript">
  GA_googleFetchAds();
</script>
<!-- END OF TAG FOR head SECTION -->
<link href="style.css" rel="stylesheet" type="text/css">

</head>
<?PHP include(/home/ucherllo/public_html/header.php); ?>

    <td height="265" align="left" valign="top" bgcolor="#FFFFFF">
    
    <?PHP
$number=10;
include("/home/ucherllo/public_html/news/show_news.php");
?>
    </td>
<?PHP include(/home/ucherllo/public_html/sidebar.php); ?>

 

 

SIDEBAR.PHP

<td width="247" align="left" valign="top" bgcolor="#FFFFFF">testing</td>
  </tr>
  </table>
  <!-- End Save for Web Slices -->
</body>
</html>

 

 

HEADER.PHP

<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="800" align="center" border="0" cellspacing="0" cellpadding="5">
  <tr>
    <td bgcolor="#FFFFFF"><center><!-- PUT THIS TAG IN DESIRED LOCATION OF SLOT FlauntDarkLeader
     -->
<script type="text/javascript">
  GA_googleFillSlot("FlauntDarkLeader");
</script>
<!-- END OF TAG FOR SLOT FlauntDarkLeader
     --></center></td>
  </tr>
</table>
<!-- Save for Web Slices (ucherlloyd.psd) -->
<table width="801" height="359" border="0" align="center" cellpadding="0" cellspacing="0" id="Table_01">
<tr>
	<td colspan="11">
		<img src="images/index_01.png" width="800" height="46" alt=""></td>
	<td>
		<img src="images/spacer.gif" width="1" height="46" alt=""></td>
</tr>
<tr>
	<td colspan="7">
		<img src="images/index_02.png" width="509" height="3" alt=""></td>
	<td rowspan="2">
		<img src="images/index_03.gif" width="24" height="28" alt=""></td>
	<td colspan="3" rowspan="3">
		<img src="images/index_04.png" width="267" height="179" alt=""></td>
	<td>
		<img src="images/spacer.gif" width="1" height="3" alt=""></td>
</tr>
<tr>
	<td colspan="6" rowspan="3">
		<img src="images/index_05.png" width="485" height="271" alt=""></td>
	<td>
		<img src="images/index_06.gif" width="24" height="25" alt=""></td>
	<td>
		<img src="images/spacer.gif" width="1" height="25" alt=""></td>
</tr>
<tr>
	<td colspan="2" rowspan="4">
		<img src="images/index_07.png" width="48" height="285" alt=""></td>
	<td>
		<img src="images/spacer.gif" width="1" height="151" alt=""></td>
</tr>
<tr>
	<td rowspan="3">
		<img src="images/index_08.png" width="13" height="134" alt=""></td>
	<td>
		<img src="images/index_09.gif" width="241" height="95" alt=""></td>
	<td rowspan="3">
		<img src="images/index_10.png" width="13" height="134" alt=""></td>
	<td>
		<img src="images/spacer.gif" width="1" height="95" alt=""></td>
</tr>
<tr>
	<td rowspan="2">
		<img src="images/index_11.png" width="23" height="39" alt=""></td>
	<td><a href="index.php"><img src="images/index_12.gif" alt="" width="51" height="22" border="0"></a></td>
	<td>
		<img src="images/index_13.gif" width="88" height="22" alt=""></td>
	<td>
		<img src="images/index_14.gif" width="71" height="22" alt=""></td>
	<td>
		<img src="images/index_15.gif" width="93" height="22" alt=""></td>
	<td rowspan="2">
		<img src="images/index_16.png" width="159" height="39" alt=""></td>
	<td rowspan="2">
		<img src="images/index_17.png" width="241" height="39" alt=""></td>
	<td>
		<img src="images/spacer.gif" width="1" height="22" alt=""></td>
</tr>
<tr>
	<td colspan="4">
		<img src="images/index_18.png" width="303" height="17" alt=""></td>
	<td>
		<img src="images/spacer.gif" width="1" height="17" alt=""></td>
</tr>
</table>
<table width="799" border="0" align="center" cellspacing="0" cellpadding="5">
  <tr>

 

This is my website

http://ucherlloyd.net/

 

 

PS: on Index.php there is also a Cutenews include that worked before i included sidebar.php & header.php

 

HELP?

Thanks in advance!

Link to comment
https://forums.phpfreaks.com/topic/245284-php-include-problem/
Share on other sites

you haven't wrapped these in quotes...

<?PHP include(/home/ucherllo/public_html/includes/header.php); ?>

change it to:

<?PHP include("/home/ucherllo/public_html/includes/header.php"); ?>

 

and the same goes for the sidebar.php:

<?PHP include(/home/ucherllo/public_html/includes/sidebar.php); ?>

should be:

<?PHP include("/home/ucherllo/public_html/includes/sidebar.php"); ?>

Link to comment
https://forums.phpfreaks.com/topic/245284-php-include-problem/#findComment-1259790
Share on other sites

you haven't wrapped these in quotes...

<?PHP include(/home/ucherllo/public_html/includes/header.php); ?>

change it to:

<?PHP include("/home/ucherllo/public_html/includes/header.php"); ?>

 

and the same goes for the sidebar.php:

<?PHP include(/home/ucherllo/public_html/includes/sidebar.php); ?>

should be:

<?PHP include("/home/ucherllo/public_html/includes/sidebar.php"); ?>

 

Lol, so stupid of me.

Thank you so much!

Link to comment
https://forums.phpfreaks.com/topic/245284-php-include-problem/#findComment-1259792
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.