Ejemplo n.º 1
0
<?php

include "dump.lib.php";
?>
<html>
	<head>
		<title>Page Title Goes Here</title>
		<style>
			<?php 
Dump::css();
?>
		</style>
		<script type="text/javascript" src="jquery.js"></script>
		<script type="text/javascript">
			<?php 
Dump::js();
?>
		</script>
	</head>
	<body>
<?php 
$sample = array('hello' => "world", 'one' => 1, 'two' => 2, 'three' => array('four' => 4, 'ram' => 'Hello World', 'int' => array('li' => 'long int', 'si' => 'short int', 'number' => '89', 'man' => array('fm' => 'Female', 'm' => 'Male', 'fm' => array('sfm' => 'shortFemale'), 'm' => array('tm' => 'tall Man')))));
Dump::r($sample);
Dump::r($sample);
?>
	</body>
</html>
Ejemplo n.º 2
0
include "ns.php";
include "dump.lib.php";
?>
<html>
	<head>
		<title>Page Title Goes Here</title>
		<style>
			<?php 
Dump::css();
?>
		</style>
		<script type="text/javascript" src="jquery.js"></script>
		<script type="text/javascript">
			<?php 
Dump::js();
?>
		</script>
	</head>
	<body>
<?php 
$sample = array('hello' => "world", 'one' => 1, 'two' => 2, 'three' => array('four' => 4, 'ram' => 'Hello World', 'int' => array('li' => 'long int', 'si' => 'short int', 'number' => '89', 'man' => array('fm' => 'Female', 'm' => 'Male', 'fm' => array('sfm' => 'shortFemale'), 'm' => array('tm' => 'tall Man')))));
$o = new stdClass();
$o->v = new stdClass();
$o->v->v = new stdClass();
print_r($o);
Dump::r($o);
?>
	</body>
</html>
Ejemplo n.º 3
0
Archivo: view.php Proyecto: neel/bong
	font-style: bold;
	display: block;
	padding: 8px;
	margin-top: 8px;
	margin-left: 5px;
	margin-bottom: 0px;
	color: #FFFFFF;
	clear: right;
	height: 50px;
	font-weight:bold;
	padding-left: 50px;
	background: #627BAD url(/bong/sys/rc/img/icons/warning.png) no-repeat left;
}
</style>
<p class="info">
No View Created for Method <?php 
echo $meta->method;
?>
 of <?php 
echo $meta->controller;
?>
 Controller in Project <?php 
echo $meta->project->name;
?>
.<br />
XDO and Meta is opened to You for the ease of Development.
</p><br /><br />
<?php 
Dump::r($xdo);
Dump::r($meta);