Skip to content
Bc. Peter Horváth edited this page Jun 7, 2018 · 7 revisions
  1. Open yourcode.php in your filesystem.
  2. Delete all in yourcode.php
  3. Write simple code:

``<?php

  $seo->encode();
  $seo->title($core->coreSencillo->info["FWK"]." - Hello World page");
  $seo->owner("My name");
	
  //basic pagination subsystem
  switch(PAGE)
  {
    case 'phpinfo':
      echo phpinfo();//one page for phpinfo
      die;
      break;
    default:
      echo $seo->save();
      echo '<body>Hello World</body>';//simple template
  }
  echo '</html>';//close HTML tag
?>
`

Clone this wiki locally