Tagged:
Pubblished: December 21st, 2009
Categorized: blog

Sample menu structure

<?php
require_once("oh.framework/oh.framework.php");

oh("menu")->define("mainmenu",array(
"Home my box http://ciccio.it/home.php" => array(
"Ciao ciao " => array(
"asd1 a",
"asd2 v"
)
),
"10" => array(
"ciao 1",
"ciaw 2"
),
"10 oppa" => "ciao ciao.it",
));

oh("menu")->define("gmenu",array(
"vecchio menu"     => oh("menu.mainmenu"),
"nuovo menu"     => oh("menu.mainmenu"),
));

oh("menu")->draw("gmenu",'<ul>','<li>','</li>','</ul>');
?>
Tagged:
Pubblished: December 18th, 2009
Categorized: blog

hello world!

<?php
	/*\
	 *    Hi!
	 *    this is a official web space of oh.framework
	\*/
	echo "Hello World!"; 
?>