-
Notifications
You must be signed in to change notification settings - Fork 0
Hello World!
Bc. Peter Horváth edited this page Jun 7, 2018
·
7 revisions
- Open yourcode.php in your filesystem.
- Delete all in yourcode.php
- 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
?>
`
For more info read OpenSencillo official page.