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] Link to comment https://forums.phpfreaks.com/topic/4643-template-help/ 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 Link to comment https://forums.phpfreaks.com/topic/4643-template-help/#findComment-16268 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.