Guteman Posted March 10, 2006 Share Posted March 10, 2006 Alright I have this code into my index.php. Where it says <table width=100>Hello World</table> I want to include a php file suc as news.php, how do I properly do that?Here is the code:[!--quoteo--][div class=\'quotetop\']QUOTE[/div][div class=\'quotemain\'][!--quotec--] $objFile = new LoadFile("template.php"); $strContent=$objFile->strContent; $strContent=ereg_replace("@CONTENT@","<table width=100>Hello World</table>",$strContent); echo $strContent;[/quote] Quote Link to comment Share on other sites More sharing options...
joecooper Posted March 11, 2006 Share Posted March 11, 2006 $objFile = new LoadFile("template.php");$strContent=$objFile->strContent;$strContent=ereg_replace("@CONTENT@","<table width=100>Hello World</table>include("news.php");",$strContent);echo $strContent;just add the include thing to it. its simple.. unless i didnt understand you 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.