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
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>";

Link to comment
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>";

 

 

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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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