Hi everyone… please help me with this… I have a search.php I would like to include in my html output. The final HTML output code is part of a php file already. So I have tried just include (“search.php”); but it just shows up in html in letters. I also have tried this …but nothing works… what am I doing wrong?
<?php
include ('search.php');
?>
But it doesn’t show the search form when it is published. And no errors. Here is my html output code…
// 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;