Project Management Overview - Templates (
Page 3 of 4 )
I've designed this application using Dreamweaver, which makes developing PHP applications a lot easier. As you will see, I've used Dreamweaver's templating technology to develop templates for the three different sections of the project management application:
admin.dwt.php
- Administration section template. A sample of this template:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
<link href="main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table width="100%" border="0">
<tr>
<td width="38%"> </td>
<td width="22%"> </td>
<td width="40%">Logged in:<!-- TemplateBeginEditable name="EditRegion4" -->EditRegion4<!-- TemplateEndEditable --></td>
</tr>
<tr>
<td colspan="3" bgcolor="#6699CC"><span class="headertxt">Project Management Software -Administration </span></td>
</tr>
<tr>
<td colspan="3"><!-- TemplateBeginEditable name="EditRegion3" --> <!-- TemplateEndEditable --></td>
</tr>
<tr>
<td colspan="3"><!-- TemplateBeginEditable name="EditRegion5" -->EditRegion5<!-- TemplateEndEditable --></td>
</tr>
<tr>
<td colspan="3" class="cright"><div align="right">copyright © 2007 PM </div></td>
</tr>
</table>
</body>
</html>
The other two templates are:
PM_Main.dwt.php
- Main section template
userauth.dwt.php
- user authentication section template.
All of the templates have three editable regions. One allows space for the logged in user name to be displayed (as well as a logout hyperlink) while the two other sections show the navigation and main application features.