Jump to content

Whats The Correct Way To Write This... !?


jigsawsoul

Recommended Posts

Whats would be the correct way to write this function?

 

any help please thanks :)

 

<?php

function template ($content)
{
<?php include($config["paths"]["resources"] . '_template/header.php'); ?>

<div id="header"> 
	<div class="innerwaraper">
  		<?php include($config["paths"]["resources"] . '_template/top.cart.php'); ?>
    	<?php include($config["paths"]["resources"] . '_template/nav.menu.php'); ?>
  	</div> 
</div> 

<div class="bodybg">  
	<div id="containner">

		<div id="leftbar"> 
    		<?php include($config["paths"]["resources"] . '_template/search.php'); ?>
      		<?php include($config["paths"]["resources"] . '_template/nav.categories.php'); ?>
      		<?php include($config["paths"]["resources"] . '_template/drop.manufacturers.php'); ?>
      		<?php include($config["paths"]["resources"] . '_template/left.boxs.php'); ?>
    	</div>
    	
   		<?php include($config["paths"]["resources"] . '_template/content.php'); ?>
   		
    	<div id="rightbar"> 
      		<?php include($config["paths"]["resources"] . '_template/nav.specials.php'); ?>
       		<?php include($config["paths"]["resources"] . '_template/drop.reviews.php'); ?>
			<?php include($config["paths"]["resources"] . '_template/popular.tags.php'); ?>
			<?php include($config["paths"]["resources"] . '_template/right.boxs.php'); ?>
    	</div> 

    	<div class="clear"> </div> 
  	</div> 
  	
  	<?php include($config["paths"]["resources"] . '_template/footer.php'); ?>
  	
</div> 

</body> 
</html> 

}

?>

Link to comment
Share on other sites

error

Parse error: syntax error, unexpected '.' in /home/jigsaws2/public_html/project/resources/_library/template.php on line 7

 

i've rewritten the code

<?php

function template ($content)
{
echo '

'.include($config["paths"]["resources"] . '_template/header.php');.'

<div id="header"> 
	<div class="innerwaraper">
  		'.include($config["paths"]["resources"] . '_template/top.cart.php');.'
    	'.include($config["paths"]["resources"] . '_template/nav.menu.php');.'
  	</div> 
</div> 

<div class="bodybg">  
	<div id="containner">

		<div id="leftbar"> 
    		'.include($config["paths"]["resources"] . '_template/search.php');.'
      		'.include($config["paths"]["resources"] . '_template/nav.categories.php');.'
      		'.include($config["paths"]["resources"] . '_template/drop.manufacturers.php');.'
      		'.include($config["paths"]["resources"] . '_template/left.boxs.php');.'
    	</div>
    	
   		'.include($config["paths"]["resources"] . '_template/content.php');.'
   		
    	<div id="rightbar"> 
      		'.include($config["paths"]["resources"] . '_template/nav.specials.php');.'
       		'.include($config["paths"]["resources"] . '_template/drop.reviews.php');.'
			'.include($config["paths"]["resources"] . '_template/popular.tags.php');.'
			'.include($config["paths"]["resources"] . '_template/right.boxs.php');.'
    	</div> 

    	<div class="clear"> </div> 
  	</div> 
  	
  	'.include($config["paths"]["resources"] . '_template/footer.php');.'
  	
</div> 

</body> 
</html>

';

}

?>

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.