Jump to content

Help with including a php file?


rajeevthomas

Recommended Posts

Hi everyone.... I have a simple search.php And I want to include that in my html output page.  I tried using

 

<?php
   include ('search.php');
?> 

 

Below is my HTML code which is part of a php file...what am I doing wrong here?

 

// Final Output


echo <<<__HTML_END

<html>

<head>

<title>Photography</title>

</head>

<body>

<table width='100%' border='0' align='center' style='width: 100%;'>

$result_final  

<?php include("search.php");?>

</table>

</body>

</html>

__HTML_END;

 

 

Link to comment
https://forums.phpfreaks.com/topic/211865-help-with-including-a-php-file/
Share on other sites

It could be because you are your <? ?> already within a PHP script.

 

Try this: (I'm no expert btw)

 

 

echo "

<html>

<head>

<title>Photography</title>

</head>

<body>

<table width='100%' border='0' align='center' style='width: 100%;'>";


$result_final  // I'm not sure what this is doing here??
include("search.php");

echo"

</table>

</body>

</html>";

It could be because you are your <? ?> already within a PHP script.

 

Try this: (I'm no expert btw)

 

 

echo "

<html>

<head>

<title>Photography</title>

</head>

<body>

<table width='100%' border='0' align='center' style='width: 100%;'>";


$result_final  // I'm not sure what this is doing here??
include("search.php");

echo"

</table>

</body>

</html>";

 

 

Oliverj777... I tired that but it just shows up as letters as it is on the final output screen.  :'(

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.