Mihalism Technologies: Adding additional pages with site header. footer and theme - Mihalism Technologies

Jump to content

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Adding additional pages with site header. footer and theme Rate Topic: -----

#1 User is offline   skidpics Icon

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 131
  • Joined: 18-June 09

Posted 25 August 2009 - 06:56 PM

Does anyone have a base php file that will include the header and footer for MMH, but allow the addition of personal content pages, but remain intact with the site theme?
-- Skidpics

My Sites:

1000slogans.com - Free Glitter Text and Slogan Maker

FacesofWoW.net - World of Warcraft Social Site
0

#2 User is offline   Michael Icon

  • Administrator
  • PipPipPip
  • Group: Administrators
  • Posts: 526
  • Joined: 06-February 09

Posted 25 August 2009 - 07:08 PM

/example.php
<?php
	// Output the contents of template file "example.tpl"
	
	// This example does not use the <template> tag to load
	// multiple templates. It's just an example of the most
	// basic usage of the Mihalism Template Engine. 

	require_once "./source/includes/data.php";
	
	// Output Function: 
	// 		$mmhclass->templ->output($filename, $template);
	//      	$filename = name of template file without .tpl
	//      	$template = <template> ID - not used in this example
	
	$mmhclass->templ->output("example");
	
	// So what just happened?
	// 		You told Mihalism Template Engine to take the contents
	// 		of the "example.tpl" file and output it between the global
	// 		page header and footer. If you want a function that just
	// 		returns the value of a parsed template without placing it 
	// 		between the global page footer and header then the parse_template()
	// 		function can be used.
	
	// Want to learn more?
	//		Check out the template guide: http://www.mihalism.net/topic/276-mihalism-template-engine-guide/
?>


/source/public_html/example.tpl
hello world!

0

#3 User is offline   skidpics Icon

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 131
  • Joined: 18-June 09

Posted 25 August 2009 - 08:25 PM

works perfect! Thanks!
-- Skidpics

My Sites:

1000slogans.com - Free Glitter Text and Slogan Maker

FacesofWoW.net - World of Warcraft Social Site
0

#4 User is offline   dlatua Icon

  • Newbie
  • Pip
  • Group: Members
  • Posts: 3
  • Joined: 12-August 09

Posted 06 March 2010 - 06:25 PM

How About to add an other script (it inclides many .php pages) with the same MMH header and footer.

Thank you
0

#5 User is offline   monray Icon

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 45
  • Joined: 02-March 10

Posted 17 March 2010 - 01:26 PM

I put this into practice but I'm new
not as tpl files are created

what can you say me

thanks
www.estuimagen.info
www.estuvideo.com
0

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic