rajeevthomas Posted August 27, 2010 Share Posted August 27, 2010 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; Quote Link to comment Share on other sites More sharing options...
oliverj777 Posted August 27, 2010 Share Posted August 27, 2010 humm .. is the file in the same directory as your search.php Quote Link to comment Share on other sites More sharing options...
oliverj777 Posted August 27, 2010 Share Posted August 27, 2010 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>"; Quote Link to comment Share on other sites More sharing options...
rajeevthomas Posted August 27, 2010 Author Share Posted August 27, 2010 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. :'( Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.