Example #1
0
<?php

require_once "../../framework/User.php";
require_once "../../framework/Client.php";
$mUser = new User();
$mClientList = $mUser->getClientList();
//echo sizeof($mClientList);
?>
<html>
<head><title>Navigator</title>
</head>
<body>
	<div id="header">
	<?php 
include '../header.php';
?>
	</div>
	<div id="container">
		<div id="sidebar" style="float:left;width:15%;">
		<?php 
include 'sidebar.php';
?>
		</div>
		<div id="content" style="float:right;width:85%;">
			Add Order
			<form action="action.php?action=add" method="POST">
			<table>
				<tr><td>Title</td><td><input type="text" name="title" id="title"></td></tr>
				<tr><td>Client</td>
					<td><select name="client" id="client"><option> --- Select Client --- </option>
					<?php