473,698 Members | 2,302 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to create a dynamic drop down box

19 New Member
I have created a php form with dynamic drop down boxes in it which pull the options from a database. The boxes work fine and the data gets submitted fine but im having a problem getting the box to default to a record of my choice from the database. (record 1 = None).
Here is the code to what i have done.
Expand|Select|Wrap|Line Numbers
  1. <input maxLength="40" size="30" name="name"></td>
  2.     </tr>
  3.     <tr>
  4.       <td width="286" height="22"><b>Person Involved:</b></td>
  5.       <td align="left" width="365" height="24"><select name="person_involved">
  6.  
  7.         <?php
  8.  
Expand|Select|Wrap|Line Numbers
  1. hesk_dbConnect();
  2. $sql = "SELECT * FROM `hesk_involved` ORDER BY `name` ASC";
  3. $result = hesk_dbQuery($sql);
  4. while ($row=hesk_dbFetchAssoc($result))
  5. {
  6.     echo "
  7.     <option value=\"$row[name]\">$row[name]</option>
  8.     ";
  9. }
  10.  
Expand|Select|Wrap|Line Numbers
  1. ?>
  2.       </select></td>
  3.     </tr>
  4.  
Hope you guys can help me out as im pulling my hair out now.
Oct 1 '07
31 8318
DirtySnipe
19 New Member
Nope

Now im getting in the drop down box

Contractor selected='selec ted'

And this still isnt what ive selected as the default.

current code

[PHP] <?php


$sql = "SELECT * FROM `hesk_involved` ORDER BY `name` ASC";
$result = hesk_dbQuery($s ql);
echo "<select name='person_in volved'>"; //name is up to you
while ($row=hesk_dbFe tchAssoc($resul t))
{
echo "<option value=\"$row[name]\">$row[name]";
if($row['isDefault']);
{
echo " selected='selec ted' " ;
}
echo "</option>";

}

echo "</select>";
?>[/PHP]
Oct 1 '07 #11
nathj
938 Recognized Expert Contributor
Nope

Now im getting in the drop down box

Contractor selected='selec ted'

And this still isnt what ive selected as the default.

current code

[PHP] <?php


$sql = "SELECT * FROM `hesk_involved` ORDER BY `name` ASC";
$result = hesk_dbQuery($s ql);
echo "<select name='person_in volved'>"; //name is up to you
while ($row=hesk_dbFe tchAssoc($resul t))
{
echo "<option value=\"$row[name]\">$row[name]";
if($row['isDefault']);
{
echo " selected='selec ted' " ;
}
echo "</option>";

}

echo "</select>";
?>[/PHP]
Hi,

I think the problem is where the opening option tag is closed. In your code(above) it is being cloased before the selected property is set. This means that the browser simply outputs the text to the screen.

You should change your code to the following:
[PHP]
<?php

$sql = "SELECT * FROM `hesk_involved` ORDER BY `name` ASC";
$result = hesk_dbQuery($s ql);

echo "<select name='person_in volved'>"; //name is up to you
while ($row=hesk_dbFe tchAssoc($resul t))
{
echo "<option value=" .$row[name] . " "; // final space is vital
if($row['isDefault'] == 1);
{
echo " selected='selec ted' " ;
}
echo ">" . $row[name] . "</option>";

}

echo "</select>";
?>[/PHP]

This should set the default value to the record in the database that has isDefault = 1. It also has this selected attribute set within the the option tag.

Try ouit the code above and let me know how you get on. I'm sorry it has taken so long to get this sorted for you, I think the copy and paste confusion of earlier should now be overcome.

Cheers
nathj
Oct 2 '07 #12
DirtySnipe
19 New Member
Great it displays correctly but the default still is not working.
Oct 2 '07 #13
nathj
938 Recognized Expert Contributor
Great it displays correctly but the default still is not working.
The next thing to do then, to find out why the default is not working, is to view the source code from a browser. This will show yo what is happening. If you post this source code here I'll take a look at it, I'm sure we can get this nailed today.

Cheers
nathj
Oct 2 '07 #14
DirtySnipe
19 New Member
For some reason i have to enter 20 characters..

[PHP]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Sunfie ld Intranet </title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<META HTTP-EQUIV="EXPIRES" CONTENT="0">
<META NAME="RESOURCE-TYPE" CONTENT="DOCUME NT">
<META NAME="DISTRIBUT ION" CONTENT="GLOBAL ">
<META NAME="AUTHOR" CONTENT="Sunfie ld Intranet">
<META NAME="COPYRIGHT " CONTENT="Copyri ght (c) by Sunfield Intranet">
<META NAME="KEYWORDS" CONTENT="News, news, New, new, Technology, technology, Headlines, headlines, Nuke, nuke, PHP-Nuke, phpnuke, php-nuke, PHP-Nuke Platinum, php-nuke platinum, PHPNuke Platinum, phpnuke platinum, Platinum, platinum, nuke platinum, Nuke Platinum, Platinum Suite, platinum suite, Platinum suite, Geek, geek, Geeks, geeks, Hacker, hacker, Hackers, hackers, Linux, linux, Windows, windows, Software, software, Download, download, Downloads, downloads, Free, FREE, free, Community, community, MP3, mp3, Forum, forum, Forums, forums, Bulletin, bulletin, Board, board, Boards, boards, PHP, php, Survey, survey, Kernel, kernel, Comment, comment, Comments, comments, Portal, portal, ODP, odp, Open, open, Open Source, OpenSource, Opensource, opensource, open source, Free Software, FreeSoftware, Freesoftware, free software, GNU, gnu, GPL, gpl, License, license, Unix, UNIX, *nix, unix, MySQL, mysql, SQL, sql, Database, DataBase, Blogs, blogs, Blog, blog, database, Mandrake, mandrake, Red Hat, RedHat, red hat, Slackware, slackware, SUSE, SuSE, suse, Debian, debian, Gnome, GNOME, gnome, Kde, KDE, kde, Enlightenment, enlightenment, Interactive, interactive, Programming, programming, Extreme, extreme, Game, game, Games, games, Web Site, web site, Weblog, WebLog, weblog, Guru, GURU, guru, Oracle, oracle, db2, DB2, odbc, ODBC, plugin, plugins, Plugin, Plugins">
<META NAME="DESCRIPTI ON" CONTENT="">
<META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
<META NAME="REVISIT-AFTER" CONTENT="1 DAYS">
<META NAME="RATING" CONTENT="GENERA L">
<META NAME="GENERATOR " CONTENT="PHP-Nuke Copyright (c) 2004 by Francisco Burzi. This is free software, and you may redistribute it under the GPL (http://phpnuke.org/files/gpl.txt). PHP-Nuke comes with absolutely no warranty, for details, see the license (http://phpnuke.org/files/gpl.txt). Powered by PHP-Nuke Platinum (http://www.techgfx.com )">
<script language="Javas cript" type="text/javascript">
<!--
function img_popup(image _url, image_width, image_height, popup_rand)
{
screenwidth = false;
screenwidth = screen.Width;
if ( !screenwidth )
{
screenwidth = window.outerWid th;
}
screenheight = false;
screenheight = screen.Height;
if ( !screenheight )
{
screenheight = window.outerHei ght;
}
if ( screenwidth < image_width || screenheight < image_height || image_width == null || image_height == null )
{
window.open(ima ge_url, 'limit_image_mo d_popup_img_' + popup_rand, 'resizable=yes, top=0,left=0,sc reenX=0,screenY =0,scrollbars=y es', false);
}
else
{
window.open(ima ge_url, 'limit_image_mo d_popup_img_' + popup_rand, 'resizable=yes, top=0,left=0,sc reenX=0,screenY =0,height=' + image_height + ',width=' + image_width, false);
}
}
//-->
</script>
<link rel="alternate" type="applicati on/rss+xml" title="RSS" href="backend.p hp">

<style type="text/css">
.menuskin{
position:absolu te;
background-color:#F2F1ED;
border:1px solid black;
font:normal 12px Verdana;
line-height:18px;
visibility:hidd en;
color:#004A9D;
}

.menuskin a{
text-decoration:none ;
color:#004A9D;
padding-left:10px;
padding-right:10px;
}

#mouseoverstyle {
background-color:#F2F1ED;
}

#mouseoverstyle a{
color:#FABF0D;
}
</style>
<LINK REL="StyleSheet " HREF="themes/PH2BLUE/style/style.css" TYPE="text/css">





</head>

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0 " onLoad="MM_prel oadImages('them es/PH2BLUE/images/header_05_on.jp g','themes/PH2BLUE/images/header_06_on.jp g','themes/PH2BLUE/images/header_07_on.jp g','themes/PH2BLUE/images/header_08_on.jp g','themes/PH2BLUE/images/header_09_on.jp g')">
<script src="themes/PH2BLUE/style/grade.js" language="Javas cript"></script>
<script language="JavaS cript" type="text/JavaScript">
<!--
function MM_swapImgResto re() { //v3.0
var i,x,a=document. MM_sr; for(i=0;a&&i<a. length&&(x=a[i])&&x.oSrc;i++ ) x.src=x.oSrc;
}

function MM_preloadImage s() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.leng th,a=MM_preload Images.argument s; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!= 0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf ("?"))>0&&paren t.frames.length ) {
d=parent.frames[n.substring(p+1 )].document; n=n.substring(0 ,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.fo rms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.l ayers&&i<d.laye rs.length;i++) x=MM_findObj(n, d.layers[i].document);
if(!x && d.getElementByI d) x=d.getElementB yId(n); return x;
}

function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_sw apImage.argumen ts; document.MM_sr= new Array; for(i=0;i<(a.le ngth-2);i+=3)
if ((x=MM_findObj( a[i]))!=null){docum ent.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script><table class="bodyline " align="center" width="100%" cellspacing="0" cellpadding="0" border="0"><tr> <td valign="top"><t able width="100%" height="21" border="0" cellpadding="0" cellspacing="0" > <tr> <td background="the mes/PH2BLUE/images/header_top.gif" width="100%"></td> <td><a href="index.php "><img src="themes/PH2BLUE/images/header_home.gif " border="0" alt="Home"></a></td> </tr></table><table width="100%" height="134" border="0" cellpadding="0" cellspacing="0" > <tr> <td><img src="themes/PH2BLUE/images/header_01.jpg" width="277" height="134" alt=""></td> <td><img src="themes/PH2BLUE/images/header_02.jpg" width="251" height="134" alt=""></td> <td><img src="themes/PH2BLUE/images/header_03.jpg" width="250" height="134" alt=""></td> <td width="100%" background="the mes/PH2BLUE/images/spacer_top.jpg" ></td> </tr></table><table width="100%" height="48" border="0" cellpadding="0" cellspacing="0" > <tr><td><img src="themes/PH2BLUE/images/header_04.jpg" width="277" height="48" alt=""></td><td><a href="index.php " onMouseOut="MM_ swapImgRestore( )" onMouseOver="MM _swapImage('Ite m1','','themes/PH2BLUE/images/header_05_on.jp g',1)"><img src="themes/PH2BLUE/images/header_05.jpg" name="Item1" width="98" height="48"></a></td><td><a href="modules.p hp?name=Topics" onMouseOut="MM_ swapImgRestore( )" onMouseOver="MM _swapImage('Ite m2','','themes/PH2BLUE/images/header_06_on.jp g',1)"><img src="themes/PH2BLUE/images/header_06.jpg" name="Item2" width="99" height="48"></a></td><td><a href="modules.p hp?name=Forums" onMouseOut="MM_ swapImgRestore( )" onMouseOver="MM _swapImage('Ite m3','','themes/PH2BLUE/images/header_07_on.jp g',1)"><img src="themes/PH2BLUE/images/header_07.jpg" name="Item3" width="100" height="48"></a></td><td><a href="modules.p hp?name=Resourc es" onMouseOut="MM_ swapImgRestore( )" onMouseOver="MM _swapImage('Ite m4','','themes/PH2BLUE/images/header_08_on.jp g',1)"><img src="themes/PH2BLUE/images/header_08.jpg" name="Item4" width="100" height="48"></a></td><td><a href="modules.p hp?name=Your_Ac count" onMouseOut="MM_ swapImgRestore( )" onMouseOver="MM _swapImage('Ite m5','','themes/PH2BLUE/images/header_09_on.jp g',1)"><img src="themes/PH2BLUE/images/header_09.jpg" name="Item5" width="104" height="48"></a></td><td width="100%" background="the mes/PH2BLUE/images/spacer_bottom.j pg"></td> </tr></table><table width="100%" border="0" cellpadding="0" cellspacing="0" ><tr><td width="194" height="12"><im g src="themes/PH2BLUE/images/left_block_top. jpg"></td><td width="100%" height="12" background="the mes/PH2BLUE/images/middle_block_to p.jpg"></td><td width="194" height="12" background="the mes/PH2BLUE/images/middle_block_to p.jpg"></td></tr></table><table width="100%" cellpadding="0" cellspacing="0" border="0" align="center"> <tr valign="top"><t d valign="top" background="the mes/PH2BLUE/images/block_left.jpg" ><script type="text/javascript" language="JavaS cript">
function sommaire_envoie listbox(page) {
var reg= new RegExp('(_somma ire_targetblank )$','g');
if (reg.test(page) ) {
page=page.repla ce(reg,"");
window.open(pag e,'','menubar=y es,status=yes, location=yes, scrollbars=yes, resizable=yes') ;
}else if (page!="select" ) {
top.location.hr ef=page;
}
}
function sommaire_ouvre_ popup(page,nom, option) {
window.open(pag e,nom,option);
}
</script>
<style type="text/css">
.sommairenowrap {white-space: nowrap;}
</style>
<table width="194" border="0" cellspacing="0" cellpadding="0" ><tr><td height="20" background="the mes/PH2BLUE/images/block_left_head er.jpg">&nbsp;& nbsp;&nbsp;&nbs p;<font class="block-title"><strong> Navigation</strong></font></td></tr><tr><td height="2"><img src="themes/PH2BLUE/images/block_left_shad dow.jpg"></td></tr><tr><td background="the mes/PH2BLUE/images/block_left.jpg" ><table width="100%" border="0" cellpadding="0" cellspacing="0" ><tr><td><tab le align="center" width="165" border="0" cellpadding="0" cellspacing="0" ><tr><td height="5"></td></tr><tr><td><fon t class="content" >
<!-- Sommaire realise grace au module Sommaire Parametrable v.3.0 b1 - ©marcoledingue - marcoledingue .-:@at@:-. free.fr --><table width="100%" border="0" cellspacing="0" cellpadding="0" ><tr><td width="100%"></td><td id="sommaire_bl ock"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel0"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><a href="index.php "><img src="images/sommaire/icon_home.gif" border="0" alt="icon_home. gif"></a>&nbsp;<a href="index.php " class="storytit le"><span class="storytit le">Home</span></a></td></tr>
<tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel1"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/icon_members.gi f" border="0" alt="icon_membe rs.gif">&nbsp;< span class="storytit le">News</span></td></tr>
<tr id="sommaire-1"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=Stories _Archive" class="boxconte nt" ><span class="boxconte nt">News Archive</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/admin/interdit.gif" title="Access restricted to our members" alt="Access restricted to our members"></td><td>&nbsp;<a href="modules.p hp?name=Submit_ News" class="boxconte nt" ><span class="boxconte nt">Submit News</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-L.gif" border="0" alt="tree-L.gif"></td><td>&nbsp;<a href="modules.p hp?name=Topics" class="boxconte nt" ><span class="boxconte nt">News Topics</span></a></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel2"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/icon_community. gif" border="0" alt="icon_commu nity.gif">&nbsp ;<span class="storytit le">General</span></td></tr>
<tr id="sommaire-2"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=Calenda r" class="boxconte nt" ><span class="boxconte nt">Calendar</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/admin/interdit.gif" title="Access restricted to our members" alt="Access restricted to our members"></td><td>&nbsp;<a href="modules.p hp?name=Forums" class="boxconte nt" ><span class="boxconte nt">Forums</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-L.gif" border="0" alt="tree-L.gif"></td><td>&nbsp;<a href="modules.p hp?name=Your_Ac count" class="boxconte nt" ><span class="boxconte nt">Account</span></a></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel3"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/icon_poll.gif" border="0" alt="icon_poll. gif">&nbsp;<spa n class="storytit le">Feedback</span></td></tr>
<tr id="sommaire-3"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< img src="images/sommaire/categories/tree-L.gif" border="0" alt="tree-L.gif"></td><td>&nbsp;<a href="modules.p hp?name=Surveys " class="boxconte nt" ><span class="boxconte nt">Surveys</span></a></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel4"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/som_downloads.g if" border="0" alt="som_downlo ads.gif">&nbsp; <span class="storytit le">Resources </span></td></tr>
<tr id="sommaire-4"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=FAQ" class="boxconte nt" ><span class="boxconte nt">FAQ</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=OptiMus ic" class="boxconte nt" ><span class="boxconte nt">OptiMusic </span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=Researc h" class="boxconte nt" ><span class="boxconte nt">Research Audit</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=Resourc es" class="boxconte nt" ><span class="boxconte nt">Resources </span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=RoutePl anner" class="boxconte nt" ><span class="boxconte nt">RoutePlanne r</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-L.gif" border="0" alt="tree-L.gif"></td><td>&nbsp;<a href="modules.p hp?name=Web_Lin ks" class="boxconte nt" ><span class="boxconte nt">Web Links</span></a></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel5"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/favoritos.gif" border="0" alt="favoritos. gif">&nbsp;<spa n class="storytit le">Events / Courses</span></td></tr>
<tr id="sommaire-5"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=IT_Requ est" class="boxconte nt" ><span class="boxconte nt">IT_Equipmen t_Request</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-L.gif" border="0" alt="tree-L.gif"></td><td>&nbsp;<a href="modules.p hp?name=RoomBoo king" class="boxconte nt" ><span class="boxconte nt">Room Booking</span></a></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel6"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/multimedia.gif" border="0" alt="multimedia .gif">&nbsp;<sp an class="storytit le">Multimedi a</span></td></tr>
<tr id="sommaire-6"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=gallery 2" class="boxconte nt" ><span class="boxconte nt">Gallery</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-L.gif" border="0" alt="tree-L.gif"></td><td>&nbsp;<a href="modules.p hp?name=Video_S tream" class="boxconte nt" ><span class="boxconte nt">Video</span></a></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel7"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/nuke.gif" border="0" alt="nuke.gif"> &nbsp;<span class="storytit le">Pilot Scheme</span></td></tr>
<tr id="sommaire-7"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< strong><big>&mi ddot;</big></strong></td><td>&nbsp;<a href="modules.p hp?name=Acciden t" class="boxconte nt" ><span class="boxconte nt"><strong>Acc ident_Form</strong></span></a><img src="images/sommaire/admin/new.gif" border=0 title="New content !" alt="New content !"></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr><tr><td></td></tr></table><br><cent er><b>Invisible Modules</b><br><font class="tiny">(A ctive but invisible link)</font></center><form action="modules .php" method="get" name="sommairef ormlistboxinvis ibles"><select name="somlistbo xinvisibles" onchange="somma ire_envoielistb ox(this.options[this.selectedIn dex].value)"><optio n value="select"> Select...<optio n value="modules. php?name=Arcade _Tweaks">Arcade _Tweaks<option value="modules. php?name=Groups ">Groups<op tion value="modules. php?name=NukeSe ntinel">NukeSen tinel<option value="modules. php?name=Who-is-Where">Who is Where</select></form>
<br><center><b> Inactive Modules</b><br><font class="tiny">(f or Admin tests)</font></center><form action="modules .php" method="get" name="sommairef ormlistboxinact ifs"><select name="somlistbo xinactifs" onchange="somma ire_envoielistb ox(this.options[this.selectedIn dex].value)"><optio n value="select"> Select...<optio n value="modules. php?name=accide nt1">accident1< option value="modules. php?name=Amazon ">Amazon<op tion value="modules. php?name=AvantG o">AvantGo<opti on value="modules. php?name=Banner _Ads">Banner Ads<option value="modules. php?name=Ban_Re quest">Request Ban<option value="modules. php?name=Cancel ">Cancel<op tion value="modules. php?name=Contac t">Contact<opti on value="modules. php?name=Conten t">Content<opti on value="modules. php?name=CZNews ">CZNews<op tion value="modules. php?name=Docs"> Documents<optio n value="modules. php?name=Donati ons">Donations< option value="modules. php?name=Downlo ads">Downloads< option value="modules. php?name=Email" >Email<option value="modules. php?name=Encycl opedia">Encyclo pedia<option value="modules. php?name=Intran et_News">Intran et_News<option value="modules. php?name=IT_Sup port">IT_Suppor t<option value="modules. php?name=Journa l">Journal<opti on value="modules. php?name=Mailin g_List">Mailing List<option value="modules. php?name=Member s_List">Members List<option value="modules. php?name=NukeC3 0">NukeC30<opti on value="modules. php?name=PHP-Nuke_Tools">Too ls<option value="modules. php?name=Privat e_Messages">My Messages<option value="modules. php?name=Psycho logy">Psycholog y<option value="modules. php?name=Recomm end_Us">Refer Us<option value="modules. php?name=Resour cesNew">Resourc esNew<option value="modules. php?name=Review s">Reviews<opti on value="modules. php?name=Search ">Search<op tion value="modules. php?name=Shoppi ng_Cart">Store< option value="modules. php?name=Shout_ Box">Shout Box<option value="modules. php?name=Staff" >Staff<option value="modules. php?name=Staff_ Accident">Staff _Accident<optio n value="modules. php?name=Statis tics">Statistic s<option value="modules. php?name=Suppor ters">Supporter s<option value="modules. php?name=test"> test<option value="modules. php?name=Thanks ">Thanks<op tion value="modules. php?name=Theme_ System">Themes< option value="modules. php?name=Top">T op 10<option value="modules. php?name=Top_Si tes">Top Sites<option value="modules. php?name=Univer sal">Universal< option value="modules. php?name=User_G uide">Sentinel Info<option value="modules. php?name=Videos ">Videos<op tion value="modules. php?name=Work_B oard">Work Board<option value="modules. php?name=Work_P robe">Work Probe<option value="modules. php?name=Work_R equest">Request s</select></form>
</font></td></tr></table>
<img src="themes/images/PH2BLUE/pixel.gif" width="4" height="3"></td></tr></table></td></tr></table><table width="194" border="0" cellspacing="0" cellpadding="0" ><tr><td height="20" background="the mes/PH2BLUE/images/block_left_head er.jpg">&nbsp;& nbsp;&nbsp;&nbs p;<font class="block-title"><strong> Administration</strong></font></td></tr><tr><td height="2"><img src="themes/PH2BLUE/images/block_left_shad dow.jpg"></td></tr><tr><td background="the mes/PH2BLUE/images/block_left.jpg" ><table width="100%" border="0" cellpadding="0" cellspacing="0" ><tr><td><tab le align="center" width="165" border="0" cellpadding="0" cellspacing="0" ><tr><td height="5"></td></tr><tr><td><fon t class="content" ><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="95%"><tr ><td><b>Quick Navigation</b></td></tr><TR><TD class="row1">&n bsp;<a href="admin.php ">Admin [PHP-Nuke]</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="modules/Forums/admin/index.php">Admi n [Forums]</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=adminStory" >Add News</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=BlocksAdmin ">Blocks Admin</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=messages">M essages Admin</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=modules">Mo dules Admin</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="modules.p hp?name=Your_Ac count&amp;file= admin">Your Account Admin</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=logout">Log out</a></TD></TR>
</TABLE></font></td></tr></table>
<img src="themes/images/PH2BLUE/pixel.gif" width="4" height="3"></td></tr></table></td></tr></table><table width="194" border="0" cellspacing="0" cellpadding="0" ><tr><td height="20" background="the mes/PH2BLUE/images/block_left_head er.jpg">&nbsp;& nbsp;&nbsp;&nbs p;<font class="block-title"><strong> Submissions</strong></font></td></tr><tr><td height="2"><img src="themes/PH2BLUE/images/block_left_shad dow.jpg"></td></tr><tr><td background="the mes/PH2BLUE/images/block_left.jpg" ><table width="100%" border="0" cellpadding="0" cellspacing="0" ><tr><td><tab le align="center" width="165" border="0" cellpadding="0" cellspacing="0" ><tr><td height="5"></td></tr><tr><td><fon t class="content" ><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="95%"><tr ><td><b>News / Reviews</b></td></tr><TR><TD class="row1">&n bsp;<a href="admin.php ?op=submissions ">Submissio ns</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=reviews">Wa iting Reviews</a>: <b>0</b></TD></TR>
<TR><TD><b>Cale ndar</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Calendar">W aiting Events</a>: <b>0</b></TD></TR>
<TR><TD><b>Down loads</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=DownloadsLi stBrokenDownloa ds">Broken Downloads</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=downloads"> Downloads</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=DownloadsLi stModRequests"> Mod. Downloads</a>: <b>0</b></TD></TR>
<TR><TD><b>Supp orters</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Supportersa ctive">Active</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Supportersi nactive">Inacti ve</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Supportersp ending">Waiting </a>: <b>0</b></TD></TR>
<TR><TD><b>_ASN SNSUP2</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Supporters_ 2active_2">Acti ve</a>: <b></b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Supporters_ 2inactive_2">In active</a>: <b></b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Supporters_ 2pending_2">Wai ting</a>: <b></b></TD></TR>
<TR><TD><b>Univ ersal</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="modules.p hp?name=Univers al&amp;file=adm in&amp;op=ItemQ ueue">Waiting Items</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="modules.p hp?name=Univers al&amp;file=adm in&amp;op=Waiti ngMods">Waiting Mod</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="modules.p hp?name=Univers al&amp;file=adm in&amp;op=reque stadmin">Waitin g Requests</a>: <b>0</b></TD></TR>
<TR><TD><b>We b Links</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=LinksListBr okenLinks">Brok en Links</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=LinksListMo dRequests">Mod. Links</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Links">Wait ing Links</a>: <b>0</b></TD></TR>
<TR><TD><b>_CLA SS1</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=NukeC30">_C LASSIFIEDS</a>:<b> 0</b></TD></TR>
</TABLE></font></td></tr></table>
<img src="themes/images/PH2BLUE/pixel.gif" width="4" height="3"></td></tr></table></td></tr></table><table width="194" border="0" cellspacing="0" cellpadding="0" ><tr><td height="20" background="the mes/PH2BLUE/images/block_left_head er.jpg">&nbsp;& nbsp;&nbsp;&nbs p;<font class="block-title"><strong> Intranet Admin Login</strong></font></td></tr><tr><td height="2"><img src="themes/PH2BLUE/images/block_left_shad dow.jpg"></td></tr><tr><td background="the mes/PH2BLUE/images/block_left.jpg" ><table width="100%" border="0" cellpadding="0" cellspacing="0" ><tr><td><tab le align="center" width="165" border="0" cellpadding="0" cellspacing="0" ><tr><td height="5"></td></tr><tr><td><fon t class="content" ><center>For use by website admins only, all unauthorized login attempts are logged.<form action="admin.p hp" method="post">< table border="0"><td> <input type="text" NAME="aid" VALUE="Admin ID" SIZE="20" MAXLENGTH="25"> </td></tr><td><input type="password" NAME="pwd" VALUE="Admin PW" SIZE="20" MAXLENGTH="18"> </td></tr><tr><td><inp ut type="hidden" NAME="random_nu m" value="490116"> <input type="hidden" NAME="op" value="login">< center><input type="submit" VALUE="Login"></center></td></tr></table></form><a href="admin.php ">Admin Main</a><br><a href="admin.php ?op=logout">Log out</a></center></font></td></tr></table>
<img src="themes/images/PH2BLUE/pixel.gif" width="4" height="3"></td></tr></table></td></tr></table></td><td align="center" bgcolor="#FCFCF C" valign="top" width="100%">
<table width="100%" border="0" cellspacing="5" cellpadding="0" > <tr> <td bgcolor="#0A34A A"><table width="100%" border="0" cellspacing="0" cellpadding="1" > <tr> <td> <table width="100%" border="0" cellpadding="4" cellspacing="0" > <tr><td bgcolor="#F2F1E D">


<!!!!!"YOUR HTML GOES HERE"!!!!!>

<html>

<head>
<script type="text/javascript" src="calendarDa teInput.js">

/*************** *************** *************** **
* Jason's Date Input Calendar- By Jason Moon http://calendar.moonsc ript.com/dateinput.cfm
* Script featured on and available at http://www.dynamicdriv e.com
* Keep this notice intact for use.
*************** *************** *************** **/
</script>
<script language="javas cript">
function printpage()
{
window.print();
}
</script>

</head>

<body>
<h1 align="center"> Staff Accident Form Pilot Scheme</h1>
<center><h2>Thi s form is to be used by Maple and Rowan only.</center></h2>
<form name="Form" form action="http://10.0.0.2/FormTools/staffaccidentre view.php" enctype="multip art/form-data" method="post">
<input type="hidden" name="form_tool s_form_id" value="4" />

<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" height="113" cellSpacing="0" cellPadding="0" width="797" border="0">
<tr>
<td width="286" height="22"><b> Name:</b></td>
<td width="218" colSpan="2" height="22">
<input maxLength="40" size="30" name="name"></td>
</tr>
<tr>
<td width="286" height="22"><b> Person Involved:</b></td>
<td align="left" width="365" height="24">

<select name='person_in volved'><option value=Contracto r selected='selec ted' >Contractor</option><option value=None selected='selec ted' >None</option><option value=Parent selected='selec ted' >Parent</option><option value=Sibling selected='selec ted' >Sibling</option><option value=Staff selected='selec ted' >Staff</option><option value=Staff (agency) selected='selec ted' >Staff (agency)</option><option value=Staff (Bank) selected='selec ted' >Staff (Bank)</option><option value=Student selected='selec ted' >Student</option><option value=Visitor selected='selec ted' >Visitor</option></select>
</td>
</tr>
<tr>
<td width="286" height="22"><b> House / Place of Work:</b></td>
<td width="218" colSpan="2" height="22">
<input maxLength="40" size="30" name="place_of_ work"></td>
</tr>
<tr>
<td width="306" height="20"><sp an lang="en-gb"><b>ABC form completed:</b></span></td>
<td width="337" colSpan="4" height="20">
<input type="checkbox" value="YES" name="abcform"> </td>
</tr>
<tr>
<td width="286" height="22"><b> ABC form number:</b></td>
<td width="218" colSpan="2" height="22">
<input maxLength="40" size="30" name="abcform_n umber"></td>
</tr>

<tr>
<td width="286" height="22"><sp an lang="en-gb"><b>Date of Accident:</b></span></td>
<td width="66" height="22"><sc ript>DateInput( 'date_of_accide nt', true, 'DD-MM-YYYY')</script></td>
<td width="225" colSpan="2" height="22">
<span lang="en-gb"><b>Click on calendar to select date</b></span></td>
</tr>
<tr>
<td width="286" height="22"><b> Time of Accident:</b></td>
<td width="47" height="25">
<input maxLength="8" size="5" name="Time_of_a ccident" value="00:00"></td>
<td width="122" height="25"><b> (hh:mm 24 hour)</b></td>
</tr>
</table>
<p><u><span lang="en-gb"><font color="#ff0000" size="4">Detail s Of Accident</font></span></u></p>
<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" height="108" cellSpacing="0" cellPadding="0" width="651" border="0">
<tr>
<td align="right" width="278" height="24">
<p align="left"><b >Where the Accident Occurred:</b> </td>
<td align="left" width="365" height="24"><se lect name="accident_ location">


<option value="Beech">B eech</option>

<option value="Birch Boys">Birch Boys</option>

<option value="Birch Girls">Birch Girls</option>

<option value="Bracken" >Bracken</option>

<option value="Dining Room">Dining Room</option>

<option value="Educatio n">Education </option>

<option value="Elm">Elm </option>

<option value="Firs">Fi rs</option>

<option value="Grounds" >Grounds</option>

<option value="Home Farm">Home Farm</option>

<option value="Main Hall">Main Hall</option>

<option value="Maple">M aple</option>

<option value="Minibus" >Minibus</option>

<option value="None">No ne</option>

<option value="Oak">Oak </option>

<option value="Off Site">Off Site</option>

<option value="Orchard" >Orchard</option>

<option value="Pool Car">Pool Car</option>

<option value="Rowan">R owan</option>

<option value="SAOS">SA OS</option>

<option value="Soft Play">Soft Play</option>

<option value="Unknown" >Unknown</option>

<option value="Woodland s">Woodlands </option>
</select></td>
</tr>
<tr>
<td align="right" width="278" height="84">
<p align="left"><b >How the Accident occurred:</b> </td>
<td align="left" width="365" height="84">
<textarea name="how" rows="5" cols="44"></textarea></td>
</tr>
<tr>
<td align="right" width="278" height="24">
<p align="left"><b >Student Involved:</b> </td>
<td align="left" width="365" height="24"><se lect name="child_inv olved">

<option value="Aaron Peters">Aaron Peters</option> <option value="Adam Edwards">Adam Edwards</option> <option value="Alex Lyndon-Smith">Alex Lyndon-Smith</option> <option value="Andrew Law">Andrew Law</option> <option value="Anthony Griffiths">Anth ony Griffiths</option> <option value="Benjamin Morris">Benjami n Morris</option> <option value="Callum Mckinlay">Callu m Mckinlay</option> <option value="Charles Green">Charles Green</option> <option value="Chris O'Donnell">Chri s O'Donnell</option> <option value="Christop her Lewis">Christop her Lewis</option> <option value="Conor Lynch">Conor Lynch</option> <option value="Corlel Marshall">Corle l Marshall</option> <option value="Curtis Lloyd">Curtis Lloyd</option> <option value="Daniel Richards">Danie l Richards</option> <option value="David Creasey">David Creasey</option> <option value="David White">David White</option> <option value="Emma Lawrence">Emma Lawrence</option> <option value="Eugene Suzuki">Eugene Suzuki</option> <option value="Frances Campbell">Franc es Campbell</option> <option value="Gail jJones">Gail jJones</option> <option value="George O'Rourke">Georg e O'Rourke</option> <option value="Hardeep Dhami">Hardeep Dhami</option> <option value="Hazheen Siwaily">Hazhee n Siwaily</option> <option value="Heather Ball">Heather Ball</option> <option value="Henry Paterson">Henry Paterson</option> <option value="Hiba Zein-Elabdin">Hiba Zein-Elabdin</option> <option value="Isaac Sullivan">Isaac Sullivan</option> <option value="Jacob Stanley">Jacob Stanley</option> <option value="Jason Cordelle">Jason Cordelle</option> <option value="Joanna Booth">Joanna Booth</option> <option value="Joe Furmage">Joe Furmage</option> <option value="John McAra">John McAra</option> <option value="Jordan Snelgrove">Jord an Snelgrove</option> <option value="Jordan Snelgrove">Jord an Snelgrove</option> <option value="Joshua Harris">Joshua Harris</option> <option value="Kai Powell">Kai Powell</option> <option value="Katie Le Blond">Katie Le Blond</option> <option value="Laura Mooney">Laura Mooney</option> <option value="Liam Dutton">Liam Dutton</option> <option value="Louise Banks">Louise Banks</option> <option value="Louise Hodson">Louise Hodson</option> <option value="Mark Coggin">Mark Coggin</option> <option value="Mark Pearson">Mark Pearson</option> <option value="Marvin Wilson">Marvin Wilson</option> <option value="Matthew Hawkins">Matthe w Hawkins</option> <option value="Matthew Lawford">Matthe w Lawford</option> <option value="Matthew Weber">Matthew Weber</option> <option value="Matthew Whalley">Matthe w Whalley</option> <option value="Michael Canham">Michael Canham</option> <option value="Michael Gingell">Michae l Gingell</option> <option value="Michael Jones">Michael Jones</option> <option value="Nicolas Van Stokkam">Nicola s Van Stokkam</option> <option value="None">No ne</option> <option value="None">No ne</option> <option value="Olivia Vann">Olivia Vann</option> <option value="Owen Wells">Owen Wells</option> <option value="Paul Beadell">Paul Beadell</option> <option value="Peter O'Leary">Peter O'Leary</option> <option value="Reg Price">Reg Price</option> <option value="Sean Grice">Sean Grice</option> <option value="Simon Shabha">Simon Shabha</option> <option value="Simon White">Simon White</option> <option value="Thomas Cox">Thomas Cox</option> <option value="Thomas Litchfield">Tho mas Litchfield</option> <option value="Unknown" >Unknown</option> <option value="Vincent Cook">Vincent Cook</option> <option value="Zachary Lauder">Zachary Lauder</option> </select></td>
</tr>
<tr>


</table>
<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" height="123" cellSpacing="0" cellPadding="0" width="651" border="0">
<tr>
<td width="306" height="20"><sp an lang="en-gb"><b>Taken to Hospital:</b></span></td>
<td width="337" colSpan="4" height="20">
<input type="checkbox" value="YES" name="hospital" ></td>
</tr>
<tr>
<td width="306" height="20"><sp an lang="en-gb"><b>Taken to Doctor:</b></span></td>
<td width="337" colSpan="4" height="20">
<input type="checkbox" value="YES" name="doctor"></td>
</tr>
<tr>
<td width="306" height="20"><sp an lang="en-gb"><b>Next of kin informed :</b></span></td>
<td width="337" colSpan="4" height="20">
<input type="checkbox" value="YES" name="next_of_k in"></td>
</tr>
<tr>
<td width="306" height="20"><sp an lang="en-gb"><b>On call manager informed :</b></span></td>
<td width="337" colSpan="4" height="20">
<input type="checkbox" value="YES" name="on_call"> </td>
</tr>
<tr>
<td width="306" height="20"><sp an lang="en-gb"><b>Ambulanc e called:</b></span></td>
<td width="40" height="20">
<input type="checkbox" value="YES" name="ambulance _called"></td>
<td width="112" height="20">
<p align="right">< b>Time called:</b></td>
<td width="60" height="20">
<input maxLength="8" size="5" name="time_call ed" value="00:00"></td>
<td width="199" height="20"><b> (hh:mm 24 hour)</b></td>
</tr>
<tr>
<td width="306" height="20">&nb sp;</td>
<td width="40" height="20">&nb sp;</td>
<td width="112" height="20">
<p align="right">< b>Time arrived:</b></td>
<td width="60" height="20">
<input maxLength="8" size="5" name="time_arri ved" value="00:00"></td>
<td width="199" height="20"><b> (hh:mm 24 hour)</b></td>
</tr>
</table>







<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" cellSpacing="0" cellPadding="0" width="450" border="0">
<tr>
<td width="277"><b> Cause of injury (1)</b></td>
<td width="170"><se lect name="cause_of_ injury1">

<option value="Bite">Bi te</option>

<option value="Challeng ingBehaviour">C hallengingBehav iour</option>

<option value="Fall">Fa ll</option>

<option value="Falling Object">Falling Object</option>

<option value="Grab">Gr ab</option>

<option value="Hair Pull">Hair Pull</option>

<option value="Hit">Hit </option>

<option value="Hot object/surface">Hot object/surface</option>

<option value="Kick">Ki ck</option>

<option value="Manual handling">Manua l handling</option>

<option value="Missile" >Missile</option>

<option value="None">No ne</option>

<option value="Pinch">P inch</option>

<option value="Pull">Pu ll</option>

<option value="Punch">P unch</option>

<option value="Push">Pu sh</option>

<option value="Restrain t">Restraint </option>

<option value="Scratch" >Scratch</option>

<option value="Seizure" >Seizure</option>

<option value="Self Harm">Self Harm</option>

<option value="Sharp Object">Sharp Object</option>

<option value="Slip">Sl ip</option>

<option value="Trip">Tr ip</option>

<option value="Trodden on">Trodden on</option>

<option value="Unknown" >Unknown</option>
</select></td>
</tr>
<tr>
<td width="277"><b> Injury received (1)</b></td>
<td width="170"><se lect name="injury_re ceived1">

<option value="Bite marks">Bite marks</option>

<option value="Bruise"> Bruise</option>

<option value="Burn">Bu rn</option>

<option value="Cut">Cut </option>

<option value="Fatality ">Fatality</option>

<option value="Fracture ">Fracture</option>

<option value="Hair loss">Hair loss</option>

<option value="Jarred"> Jarred</option>

<option value="Muscle Strain">Muscle Strain</option>

<option value="None">No ne</option>

<option value="Redness" >Redness</option>

<option value="Scald">S cald</option>

<option value="Scratch" >Scratch</option>

<option value="Soreness ">Soreness</option>

<option value="Swelling ">Swelling</option>

<option value="Unconsci ous">Unconsciou s</option>

<option value="Unknown at time">Unknown at time</option>

<option value="Whiplash ">Whiplash</option>
</select></td>
</tr>
<tr>
<td width="277"><b> Injury to part of body (1)</b></td>
<td width="170"><se lect name="injury_to _body_part1">


<option value="Ankle">A nkle</option>

<option value="Arm">Arm </option>

<option value="Back">Ba ck</option>

<option value="Breast"> Breast</option>

<option value="Chest">C hest</option>

<option value="Ear">Ear </option>

<option value="Elbow">E lbow</option>

<option value="Eye">Eye </option>

<option value="Face">Fa ce</option>

<option value="Finger"> Finger</option>

<option value="Finger"> Finger</option>

<option value="Foot">Fo ot</option>

<option value="Groin">G roin</option>

<option value="Hand">Ha nd</option>

<option value="Head">He ad</option>

<option value="Knee">Kn ee</option>

<option value="Leg">Leg </option>

<option value="Mouth">M outh</option>

<option value="Neck">Ne ck</option>

<option value="None">No ne</option>

<option value="Nose">No se</option>

<option value="Shin">Sh in</option>

<option value="Shoulder ">Shoulder</option>

<option value="Stomach" >Stomach</option>

<option value="Thumb">T humb</option>

<option value="Toe">Toe </option>

<option value="Wrist">W rist</option>
</select></td>
</tr>
<tr>
<td width="277"><b> Cause of injury (2)</b></td>
<td width="170"><se lect name="cause_of_ injury2">

<option value="Bite">Bi te</option>

<option value="Challeng ingBehaviour">C hallengingBehav iour</option>

<option value="Fall">Fa ll</option>

<option value="Falling Object">Falling Object</option>

<option value="Grab">Gr ab</option>

<option value="Hair Pull">Hair Pull</option>

<option value="Hit">Hit </option>

<option value="Hot object/surface">Hot object/surface</option>

<option value="Kick">Ki ck</option>

<option value="Manual handling">Manua l handling</option>

<option value="Missile" >Missile</option>

<option value="None">No ne</option>

<option value="Pinch">P inch</option>

<option value="Pull">Pu ll</option>

<option value="Punch">P unch</option>

<option value="Push">Pu sh</option>

<option value="Restrain t">Restraint </option>

<option value="Scratch" >Scratch</option>

<option value="Seizure" >Seizure</option>

<option value="Self Harm">Self Harm</option>

<option value="Sharp Object">Sharp Object</option>

<option value="Slip">Sl ip</option>

<option value="Trip">Tr ip</option>

<option value="Trodden on">Trodden on</option>

<option value="Unknown" >Unknown</option>
</select></td>
</tr>
<tr>
<td width="277"><b> Injury received (2)</b></td>
<td width="170"><se lect name="injury_re ceived2">

<option value="Bite marks">Bite marks</option>

<option value="Bruise"> Bruise</option>

<option value="Burn">Bu rn</option>

<option value="Cut">Cut </option>

<option value="Fatality ">Fatality</option>

<option value="Fracture ">Fracture</option>

<option value="Hair loss">Hair loss</option>

<option value="Jarred"> Jarred</option>

<option value="Muscle Strain">Muscle Strain</option>

<option value="None">No ne</option>

<option value="Redness" >Redness</option>

<option value="Scald">S cald</option>

<option value="Scratch" >Scratch</option>

<option value="Soreness ">Soreness</option>

<option value="Swelling ">Swelling</option>

<option value="Unconsci ous">Unconsciou s</option>

<option value="Unknown at time">Unknown at time</option>

<option value="Whiplash ">Whiplash</option>
</select></td>
</tr>
<tr>
<td width="277"><b> Injury to part of body (2)</b></td>
<td width="170"><se lect name="injury_to _body_part2">


<option value="Ankle">A nkle</option>

<option value="Arm">Arm </option>

<option value="Back">Ba ck</option>

<option value="Breast"> Breast</option>

<option value="Chest">C hest</option>

<option value="Ear">Ear </option>

<option value="Elbow">E lbow</option>

<option value="Eye">Eye </option>

<option value="Face">Fa ce</option>

<option value="Finger"> Finger</option>

<option value="Finger"> Finger</option>

<option value="Foot">Fo ot</option>

<option value="Groin">G roin</option>

<option value="Hand">Ha nd</option>

<option value="Head">He ad</option>

<option value="Knee">Kn ee</option>

<option value="Leg">Leg </option>

<option value="Mouth">M outh</option>

<option value="Neck">Ne ck</option>

<option value="None">No ne</option>

<option value="Nose">No se</option>

<option value="Shin">Sh in</option>

<option value="Shoulder ">Shoulder</option>

<option value="Stomach" >Stomach</option>

<option value="Thumb">T humb</option>

<option value="Toe">Toe </option>

<option value="Wrist">W rist</option>
</select></td>
</tr>





</table>
<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" cellSpacing="0" cellPadding="0" width="654" border="0">
<tr>
<td align="right" width="278" height="25">
<p align="left"><b >Describe in detail any treatment given:</b></td>
<td align="left" width="376" height="25">
<textarea name="describe_ treatment" rows="5" cols="44"></textarea></td>
</tr>
</table>
<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" height="27" cellSpacing="0" cellPadding="0" width="654" border="0">
<tr>
<td width="278" height="1"><b>N ame of any witnesses to incident:</b></td>
<td width="376" height="1">
<input maxLength="40" size="30" name="name_of_w itness"></td>
</tr>
<tr>
<td width="278" height="1"><b>S taff on duty:</b></td>
<td width="376" height="1">
<input maxLength="40" size="30" name="staff_on_ duty"></td>
</tr>
<tr>
<td width="278" height="1"><b>A ny other details:</b></td>
<td width="376" height="1">
<textarea name="other_det ails" rows="5" cols="44"></textarea></td>
</tr>
<tr>
<td width="278" height="1"><b>N ame of person completing form:</b></td>
<td width="376" height="1">
<input maxLength="40" size="30" name="name_of_f orm_filler"></td>
</tr>
</table>
<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" height="24" cellSpacing="0" cellPadding="0" width="653" border="0">
<tr>
<td width="278" height="1"><spa n lang="en-gb"><b>Date:</b></span></td>
<td width="80" height="1">
<script>DateInp ut('date', true, 'DD-MM-YYYY')</script></td>
<td width="225" colSpan="2" height="22">
<span lang="en-gb"><b>Click on calendar to select date</b></span></td>
</tr>
</table>

<p align="center"> &nbsp;</p>
<p align="center">
<input type="submit" value="Submit" name="Confirmat ion:Your request has been received and is being processed.">
<input type="reset" value="Reset Form" name="B2">
</p>
</form>

<hr width="80%" color="#000000" ><span lang="en-gb">



<p align="center"> Page created &amp; maintained by PaulC</p>
<p align="center"> Page last updated 26/09/2007</p>
</span>

</body>

</html>
<!!!!!"YOUR HTML STOPS HERE"!!!!!></td> </tr> </table></td></tr></table></td> </tr></table></td></table><table border="0" cellpadding="0" cellspacing="0" width="100%" id="AutoNumber1 " height="36" background="the mes/PH2BLUE/images/bottomline.jpg" ><td align="center" width="100%"><f ont class="dcode">< b> &copy; 2006 Sunfield Childrens Homes Ltd</b></font><br>Create d and maintained by PaulC</font></td></table></body>
</html>[/PHP]
Oct 2 '07 #15
DirtySnipe
19 New Member
Here is the source code from IE.
Sorry but this form is quite a big one.


[HTML]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Sunfie ld Intranet </title>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<META HTTP-EQUIV="EXPIRES" CONTENT="0">
<META NAME="RESOURCE-TYPE" CONTENT="DOCUME NT">
<META NAME="DISTRIBUT ION" CONTENT="GLOBAL ">
<META NAME="AUTHOR" CONTENT="Sunfie ld Intranet">
<META NAME="COPYRIGHT " CONTENT="Copyri ght (c) by Sunfield Intranet">
<META NAME="KEYWORDS" CONTENT="News, news, New, new, Technology, technology, Headlines, headlines, Nuke, nuke, PHP-Nuke, phpnuke, php-nuke, PHP-Nuke Platinum, php-nuke platinum, PHPNuke Platinum, phpnuke platinum, Platinum, platinum, nuke platinum, Nuke Platinum, Platinum Suite, platinum suite, Platinum suite, Geek, geek, Geeks, geeks, Hacker, hacker, Hackers, hackers, Linux, linux, Windows, windows, Software, software, Download, download, Downloads, downloads, Free, FREE, free, Community, community, MP3, mp3, Forum, forum, Forums, forums, Bulletin, bulletin, Board, board, Boards, boards, PHP, php, Survey, survey, Kernel, kernel, Comment, comment, Comments, comments, Portal, portal, ODP, odp, Open, open, Open Source, OpenSource, Opensource, opensource, open source, Free Software, FreeSoftware, Freesoftware, free software, GNU, gnu, GPL, gpl, License, license, Unix, UNIX, *nix, unix, MySQL, mysql, SQL, sql, Database, DataBase, Blogs, blogs, Blog, blog, database, Mandrake, mandrake, Red Hat, RedHat, red hat, Slackware, slackware, SUSE, SuSE, suse, Debian, debian, Gnome, GNOME, gnome, Kde, KDE, kde, Enlightenment, enlightenment, Interactive, interactive, Programming, programming, Extreme, extreme, Game, game, Games, games, Web Site, web site, Weblog, WebLog, weblog, Guru, GURU, guru, Oracle, oracle, db2, DB2, odbc, ODBC, plugin, plugins, Plugin, Plugins">
<META NAME="DESCRIPTI ON" CONTENT="">
<META NAME="ROBOTS" CONTENT="INDEX, FOLLOW">
<META NAME="REVISIT-AFTER" CONTENT="1 DAYS">
<META NAME="RATING" CONTENT="GENERA L">
<META NAME="GENERATOR " CONTENT="PHP-Nuke Copyright (c) 2004 by Francisco Burzi. This is free software, and you may redistribute it under the GPL (http://phpnuke.org/files/gpl.txt). PHP-Nuke comes with absolutely no warranty, for details, see the license (http://phpnuke.org/files/gpl.txt). Powered by PHP-Nuke Platinum (http://www.techgfx.com )">
<script language="Javas cript" type="text/javascript">
<!--
function img_popup(image _url, image_width, image_height, popup_rand)
{
screenwidth = false;
screenwidth = screen.Width;
if ( !screenwidth )
{
screenwidth = window.outerWid th;
}
screenheight = false;
screenheight = screen.Height;
if ( !screenheight )
{
screenheight = window.outerHei ght;
}
if ( screenwidth < image_width || screenheight < image_height || image_width == null || image_height == null )
{
window.open(ima ge_url, 'limit_image_mo d_popup_img_' + popup_rand, 'resizable=yes, top=0,left=0,sc reenX=0,screenY =0,scrollbars=y es', false);
}
else
{
window.open(ima ge_url, 'limit_image_mo d_popup_img_' + popup_rand, 'resizable=yes, top=0,left=0,sc reenX=0,screenY =0,height=' + image_height + ',width=' + image_width, false);
}
}
//-->
</script>
<link rel="alternate" type="applicati on/rss+xml" title="RSS" href="backend.p hp">

<style type="text/css">
.menuskin{
position:absolu te;
background-color:#F2F1ED;
border:1px solid black;
font:normal 12px Verdana;
line-height:18px;
visibility:hidd en;
color:#004A9D;
}

.menuskin a{
text-decoration:none ;
color:#004A9D;
padding-left:10px;
padding-right:10px;
}

#mouseoverstyle {
background-color:#F2F1ED;
}

#mouseoverstyle a{
color:#FABF0D;
}
</style>
<LINK REL="StyleSheet " HREF="themes/PH2BLUE/style/style.css" TYPE="text/css">





</head>

<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0 " onLoad="MM_prel oadImages('them es/PH2BLUE/images/header_05_on.jp g','themes/PH2BLUE/images/header_06_on.jp g','themes/PH2BLUE/images/header_07_on.jp g','themes/PH2BLUE/images/header_08_on.jp g','themes/PH2BLUE/images/header_09_on.jp g')">
<script src="themes/PH2BLUE/style/grade.js" language="Javas cript"></script>
<script language="JavaS cript" type="text/JavaScript">
<!--
function MM_swapImgResto re() { //v3.0
var i,x,a=document. MM_sr; for(i=0;a&&i<a. length&&(x=a[i])&&x.oSrc;i++ ) x.src=x.oSrc;
}

function MM_preloadImage s() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.leng th,a=MM_preload Images.argument s; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!= 0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf ("?"))>0&&paren t.frames.length ) {
d=parent.frames[n.substring(p+1 )].document; n=n.substring(0 ,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.fo rms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.l ayers&&i<d.laye rs.length;i++) x=MM_findObj(n, d.layers[i].document);
if(!x && d.getElementByI d) x=d.getElementB yId(n); return x;
}

function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_sw apImage.argumen ts; document.MM_sr= new Array; for(i=0;i<(a.le ngth-2);i+=3)
if ((x=MM_findObj( a[i]))!=null){docum ent.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script><table class="bodyline " align="center" width="100%" cellspacing="0" cellpadding="0" border="0"><tr> <td valign="top"><t able width="100%" height="21" border="0" cellpadding="0" cellspacing="0" > <tr> <td background="the mes/PH2BLUE/images/header_top.gif" width="100%"></td> <td><a href="index.php "><img src="themes/PH2BLUE/images/header_home.gif " border="0" alt="Home"></a></td> </tr></table><table width="100%" height="134" border="0" cellpadding="0" cellspacing="0" > <tr> <td><img src="themes/PH2BLUE/images/header_01.jpg" width="277" height="134" alt=""></td> <td><img src="themes/PH2BLUE/images/header_02.jpg" width="251" height="134" alt=""></td> <td><img src="themes/PH2BLUE/images/header_03.jpg" width="250" height="134" alt=""></td> <td width="100%" background="the mes/PH2BLUE/images/spacer_top.jpg" ></td> </tr></table><table width="100%" height="48" border="0" cellpadding="0" cellspacing="0" > <tr><td><img src="themes/PH2BLUE/images/header_04.jpg" width="277" height="48" alt=""></td><td><a href="index.php " onMouseOut="MM_ swapImgRestore( )" onMouseOver="MM _swapImage('Ite m1','','themes/PH2BLUE/images/header_05_on.jp g',1)"><img src="themes/PH2BLUE/images/header_05.jpg" name="Item1" width="98" height="48"></a></td><td><a href="modules.p hp?name=Topics" onMouseOut="MM_ swapImgRestore( )" onMouseOver="MM _swapImage('Ite m2','','themes/PH2BLUE/images/header_06_on.jp g',1)"><img src="themes/PH2BLUE/images/header_06.jpg" name="Item2" width="99" height="48"></a></td><td><a href="modules.p hp?name=Forums" onMouseOut="MM_ swapImgRestore( )" onMouseOver="MM _swapImage('Ite m3','','themes/PH2BLUE/images/header_07_on.jp g',1)"><img src="themes/PH2BLUE/images/header_07.jpg" name="Item3" width="100" height="48"></a></td><td><a href="modules.p hp?name=Resourc es" onMouseOut="MM_ swapImgRestore( )" onMouseOver="MM _swapImage('Ite m4','','themes/PH2BLUE/images/header_08_on.jp g',1)"><img src="themes/PH2BLUE/images/header_08.jpg" name="Item4" width="100" height="48"></a></td><td><a href="modules.p hp?name=Your_Ac count" onMouseOut="MM_ swapImgRestore( )" onMouseOver="MM _swapImage('Ite m5','','themes/PH2BLUE/images/header_09_on.jp g',1)"><img src="themes/PH2BLUE/images/header_09.jpg" name="Item5" width="104" height="48"></a></td><td width="100%" background="the mes/PH2BLUE/images/spacer_bottom.j pg"></td> </tr></table><table width="100%" border="0" cellpadding="0" cellspacing="0" ><tr><td width="194" height="12"><im g src="themes/PH2BLUE/images/left_block_top. jpg"></td><td width="100%" height="12" background="the mes/PH2BLUE/images/middle_block_to p.jpg"></td><td width="194" height="12" background="the mes/PH2BLUE/images/middle_block_to p.jpg"></td></tr></table><table width="100%" cellpadding="0" cellspacing="0" border="0" align="center"> <tr valign="top"><t d valign="top" background="the mes/PH2BLUE/images/block_left.jpg" ><script type="text/javascript" language="JavaS cript">
function sommaire_envoie listbox(page) {
var reg= new RegExp('(_somma ire_targetblank )$','g');
if (reg.test(page) ) {
page=page.repla ce(reg,"");
window.open(pag e,'','menubar=y es,status=yes, location=yes, scrollbars=yes, resizable=yes') ;
}else if (page!="select" ) {
top.location.hr ef=page;
}
}
function sommaire_ouvre_ popup(page,nom, option) {
window.open(pag e,nom,option);
}
</script>
<style type="text/css">
.sommairenowrap {white-space: nowrap;}
</style>
<table width="194" border="0" cellspacing="0" cellpadding="0" ><tr><td height="20" background="the mes/PH2BLUE/images/block_left_head er.jpg">&nbsp;& nbsp;&nbsp;&nbs p;<font class="block-title"><strong> Navigation</strong></font></td></tr><tr><td height="2"><img src="themes/PH2BLUE/images/block_left_shad dow.jpg"></td></tr><tr><td background="the mes/PH2BLUE/images/block_left.jpg" ><table width="100%" border="0" cellpadding="0" cellspacing="0" ><tr><td><tab le align="center" width="165" border="0" cellpadding="0" cellspacing="0" ><tr><td height="5"></td></tr><tr><td><fon t class="content" >
<!-- Sommaire realise grace au module Sommaire Parametrable v.3.0 b1 - ©marcoledingue - marcoledingue .-:@at@:-. free.fr --><table width="100%" border="0" cellspacing="0" cellpadding="0" ><tr><td width="100%"></td><td id="sommaire_bl ock"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel0"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><a href="index.php "><img src="images/sommaire/icon_home.gif" border="0" alt="icon_home. gif"></a>&nbsp;<a href="index.php " class="storytit le"><span class="storytit le">Home</span></a></td></tr>
<tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel1"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/icon_members.gi f" border="0" alt="icon_membe rs.gif">&nbsp;< span class="storytit le">News</span></td></tr>
<tr id="sommaire-1"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=Stories _Archive" class="boxconte nt" ><span class="boxconte nt">News Archive</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/admin/interdit.gif" title="Access restricted to our members" alt="Access restricted to our members"></td><td>&nbsp;<a href="modules.p hp?name=Submit_ News" class="boxconte nt" ><span class="boxconte nt">Submit News</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-L.gif" border="0" alt="tree-L.gif"></td><td>&nbsp;<a href="modules.p hp?name=Topics" class="boxconte nt" ><span class="boxconte nt">News Topics</span></a></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel2"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/icon_community. gif" border="0" alt="icon_commu nity.gif">&nbsp ;<span class="storytit le">General</span></td></tr>
<tr id="sommaire-2"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=Calenda r" class="boxconte nt" ><span class="boxconte nt">Calendar</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/admin/interdit.gif" title="Access restricted to our members" alt="Access restricted to our members"></td><td>&nbsp;<a href="modules.p hp?name=Forums" class="boxconte nt" ><span class="boxconte nt">Forums</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-L.gif" border="0" alt="tree-L.gif"></td><td>&nbsp;<a href="modules.p hp?name=Your_Ac count" class="boxconte nt" ><span class="boxconte nt">Account</span></a></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel3"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/icon_poll.gif" border="0" alt="icon_poll. gif">&nbsp;<spa n class="storytit le">Feedback</span></td></tr>
<tr id="sommaire-3"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< img src="images/sommaire/categories/tree-L.gif" border="0" alt="tree-L.gif"></td><td>&nbsp;<a href="modules.p hp?name=Surveys " class="boxconte nt" ><span class="boxconte nt">Surveys</span></a></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel4"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/som_downloads.g if" border="0" alt="som_downlo ads.gif">&nbsp; <span class="storytit le">Resources </span></td></tr>
<tr id="sommaire-4"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=FAQ" class="boxconte nt" ><span class="boxconte nt">FAQ</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=OptiMus ic" class="boxconte nt" ><span class="boxconte nt">OptiMusic </span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=Researc h" class="boxconte nt" ><span class="boxconte nt">Research Audit</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=Resourc es" class="boxconte nt" ><span class="boxconte nt">Resources </span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=RoutePl anner" class="boxconte nt" ><span class="boxconte nt">RoutePlanne r</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-L.gif" border="0" alt="tree-L.gif"></td><td>&nbsp;<a href="modules.p hp?name=Web_Lin ks" class="boxconte nt" ><span class="boxconte nt">Web Links</span></a></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel5"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/favoritos.gif" border="0" alt="favoritos. gif">&nbsp;<spa n class="storytit le">Events / Courses</span></td></tr>
<tr id="sommaire-5"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=IT_Requ est" class="boxconte nt" ><span class="boxconte nt">IT_Equipmen t_Request</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-L.gif" border="0" alt="tree-L.gif"></td><td>&nbsp;<a href="modules.p hp?name=RoomBoo king" class="boxconte nt" ><span class="boxconte nt">Room Booking</span></a></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel6"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/multimedia.gif" border="0" alt="multimedia .gif">&nbsp;<sp an class="storytit le">Multimedi a</span></td></tr>
<tr id="sommaire-6"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< img src="images/sommaire/categories/tree-T.gif" border="0" alt="tree-T.gif"></td><td>&nbsp;<a href="modules.p hp?name=gallery 2" class="boxconte nt" ><span class="boxconte nt">Gallery</span></a></td></tr>
<tr><td width="20" align="right">< img src="images/sommaire/categories/tree-L.gif" border="0" alt="tree-L.gif"></td><td>&nbsp;<a href="modules.p hp?name=Video_S tream" class="boxconte nt" ><span class="boxconte nt">Video</span></a></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr>
<tr bgcolor=""><td height="4" width="100%"></td><td id="sommaire_di vsublevel7"></td></tr>
<tr><td bgcolor="" class="sommaire nowrap" width="100%" ><img src="images/sommaire/nuke.gif" border="0" alt="nuke.gif"> &nbsp;<span class="storytit le">Pilot Scheme</span></td></tr>
<tr id="sommaire-7"><td bgcolor="" width="100"><ta ble border="0" cellspacing="0" cellpadding="0" class="sommaire nowrap"><tr><td width="20" align="right">< strong><big>&mi ddot;</big></strong></td><td>&nbsp;<a href="modules.p hp?name=Acciden t" class="boxconte nt" ><span class="boxconte nt"><strong>Acc ident_Form</strong></span></a><img src="images/sommaire/admin/new.gif" border=0 title="New content !" alt="New content !"></td></tr>
</table></td></tr><tr bgcolor=""><td height="4"></td></tr><tr><td></td></tr></table><br><cent er><b>Invisible Modules</b><br><font class="tiny">(A ctive but invisible link)</font></center><form action="modules .php" method="get" name="sommairef ormlistboxinvis ibles"><select name="somlistbo xinvisibles" onchange="somma ire_envoielistb ox(this.options[this.selectedIn dex].value)"><optio n value="select"> Select...<optio n value="modules. php?name=Arcade _Tweaks">Arcade _Tweaks<option value="modules. php?name=Groups ">Groups<op tion value="modules. php?name=NukeSe ntinel">NukeSen tinel<option value="modules. php?name=Who-is-Where">Who is Where</select></form>
<br><center><b> Inactive Modules</b><br><font class="tiny">(f or Admin tests)</font></center><form action="modules .php" method="get" name="sommairef ormlistboxinact ifs"><select name="somlistbo xinactifs" onchange="somma ire_envoielistb ox(this.options[this.selectedIn dex].value)"><optio n value="select"> Select...<optio n value="modules. php?name=accide nt1">accident1< option value="modules. php?name=Amazon ">Amazon<op tion value="modules. php?name=AvantG o">AvantGo<opti on value="modules. php?name=Banner _Ads">Banner Ads<option value="modules. php?name=Ban_Re quest">Request Ban<option value="modules. php?name=Cancel ">Cancel<op tion value="modules. php?name=Contac t">Contact<opti on value="modules. php?name=Conten t">Content<opti on value="modules. php?name=CZNews ">CZNews<op tion value="modules. php?name=Docs"> Documents<optio n value="modules. php?name=Donati ons">Donations< option value="modules. php?name=Downlo ads">Downloads< option value="modules. php?name=Email" >Email<option value="modules. php?name=Encycl opedia">Encyclo pedia<option value="modules. php?name=Intran et_News">Intran et_News<option value="modules. php?name=IT_Sup port">IT_Suppor t<option value="modules. php?name=Journa l">Journal<opti on value="modules. php?name=Mailin g_List">Mailing List<option value="modules. php?name=Member s_List">Members List<option value="modules. php?name=NukeC3 0">NukeC30<opti on value="modules. php?name=PHP-Nuke_Tools">Too ls<option value="modules. php?name=Privat e_Messages">My Messages<option value="modules. php?name=Psycho logy">Psycholog y<option value="modules. php?name=Recomm end_Us">Refer Us<option value="modules. php?name=Resour cesNew">Resourc esNew<option value="modules. php?name=Review s">Reviews<opti on value="modules. php?name=Search ">Search<op tion value="modules. php?name=Shoppi ng_Cart">Store< option value="modules. php?name=Shout_ Box">Shout Box<option value="modules. php?name=Staff" >Staff<option value="modules. php?name=Staff_ Accident">Staff _Accident<optio n value="modules. php?name=Statis tics">Statistic s<option value="modules. php?name=Suppor ters">Supporter s<option value="modules. php?name=test"> test<option value="modules. php?name=Thanks ">Thanks<op tion value="modules. php?name=Theme_ System">Themes< option value="modules. php?name=Top">T op 10<option value="modules. php?name=Top_Si tes">Top Sites<option value="modules. php?name=Univer sal">Universal< option value="modules. php?name=User_G uide">Sentinel Info<option value="modules. php?name=Videos ">Videos<op tion value="modules. php?name=Work_B oard">Work Board<option value="modules. php?name=Work_P robe">Work Probe<option value="modules. php?name=Work_R equest">Request s</select></form>
</font></td></tr></table>
<img src="themes/images/PH2BLUE/pixel.gif" width="4" height="3"></td></tr></table></td></tr></table><table width="194" border="0" cellspacing="0" cellpadding="0" ><tr><td height="20" background="the mes/PH2BLUE/images/block_left_head er.jpg">&nbsp;& nbsp;&nbsp;&nbs p;<font class="block-title"><strong> Administration</strong></font></td></tr><tr><td height="2"><img src="themes/PH2BLUE/images/block_left_shad dow.jpg"></td></tr><tr><td background="the mes/PH2BLUE/images/block_left.jpg" ><table width="100%" border="0" cellpadding="0" cellspacing="0" ><tr><td><tab le align="center" width="165" border="0" cellpadding="0" cellspacing="0" ><tr><td height="5"></td></tr><tr><td><fon t class="content" ><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="95%"><tr ><td><b>Quick Navigation</b></td></tr><TR><TD class="row1">&n bsp;<a href="admin.php ">Admin [PHP-Nuke]</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="modules/Forums/admin/index.php">Admi n [Forums]</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=adminStory" >Add News</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=BlocksAdmin ">Blocks Admin</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=messages">M essages Admin</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=modules">Mo dules Admin</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="modules.p hp?name=Your_Ac count&amp;file= admin">Your Account Admin</a></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=logout">Log out</a></TD></TR>
</TABLE></font></td></tr></table>
<img src="themes/images/PH2BLUE/pixel.gif" width="4" height="3"></td></tr></table></td></tr></table><table width="194" border="0" cellspacing="0" cellpadding="0" ><tr><td height="20" background="the mes/PH2BLUE/images/block_left_head er.jpg">&nbsp;& nbsp;&nbsp;&nbs p;<font class="block-title"><strong> Submissions</strong></font></td></tr><tr><td height="2"><img src="themes/PH2BLUE/images/block_left_shad dow.jpg"></td></tr><tr><td background="the mes/PH2BLUE/images/block_left.jpg" ><table width="100%" border="0" cellpadding="0" cellspacing="0" ><tr><td><tab le align="center" width="165" border="0" cellpadding="0" cellspacing="0" ><tr><td height="5"></td></tr><tr><td><fon t class="content" ><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="95%"><tr ><td><b>News / Reviews</b></td></tr><TR><TD class="row1">&n bsp;<a href="admin.php ?op=submissions ">Submissio ns</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=reviews">Wa iting Reviews</a>: <b>0</b></TD></TR>
<TR><TD><b>Cale ndar</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Calendar">W aiting Events</a>: <b>0</b></TD></TR>
<TR><TD><b>Down loads</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=DownloadsLi stBrokenDownloa ds">Broken Downloads</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=downloads"> Downloads</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=DownloadsLi stModRequests"> Mod. Downloads</a>: <b>0</b></TD></TR>
<TR><TD><b>Supp orters</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Supportersa ctive">Active</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Supportersi nactive">Inacti ve</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Supportersp ending">Waiting </a>: <b>0</b></TD></TR>
<TR><TD><b>_ASN SNSUP2</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Supporters_ 2active_2">Acti ve</a>: <b></b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Supporters_ 2inactive_2">In active</a>: <b></b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Supporters_ 2pending_2">Wai ting</a>: <b></b></TD></TR>
<TR><TD><b>Univ ersal</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="modules.p hp?name=Univers al&amp;file=adm in&amp;op=ItemQ ueue">Waiting Items</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="modules.p hp?name=Univers al&amp;file=adm in&amp;op=Waiti ngMods">Waiting Mod</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="modules.p hp?name=Univers al&amp;file=adm in&amp;op=reque stadmin">Waitin g Requests</a>: <b>0</b></TD></TR>
<TR><TD><b>We b Links</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=LinksListBr okenLinks">Brok en Links</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=LinksListMo dRequests">Mod. Links</a>: <b>0</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=Links">Wait ing Links</a>: <b>0</b></TD></TR>
<TR><TD><b>_CLA SS1</b></TD></TR>
<TR><TD class="row1">&n bsp;<a href="admin.php ?op=NukeC30">_C LASSIFIEDS</a>:<b> 0</b></TD></TR>
</TABLE></font></td></tr></table>
<img src="themes/images/PH2BLUE/pixel.gif" width="4" height="3"></td></tr></table></td></tr></table><table width="194" border="0" cellspacing="0" cellpadding="0" ><tr><td height="20" background="the mes/PH2BLUE/images/block_left_head er.jpg">&nbsp;& nbsp;&nbsp;&nbs p;<font class="block-title"><strong> Intranet Admin Login</strong></font></td></tr><tr><td height="2"><img src="themes/PH2BLUE/images/block_left_shad dow.jpg"></td></tr><tr><td background="the mes/PH2BLUE/images/block_left.jpg" ><table width="100%" border="0" cellpadding="0" cellspacing="0" ><tr><td><tab le align="center" width="165" border="0" cellpadding="0" cellspacing="0" ><tr><td height="5"></td></tr><tr><td><fon t class="content" ><center>For use by website admins only, all unauthorized login attempts are logged.<form action="admin.p hp" method="post">< table border="0"><td> <input type="text" NAME="aid" VALUE="Admin ID" SIZE="20" MAXLENGTH="25"> </td></tr><td><input type="password" NAME="pwd" VALUE="Admin PW" SIZE="20" MAXLENGTH="18"> </td></tr><tr><td><inp ut type="hidden" NAME="random_nu m" value="490116"> <input type="hidden" NAME="op" value="login">< center><input type="submit" VALUE="Login"></center></td></tr></table></form><a href="admin.php ">Admin Main</a><br><a href="admin.php ?op=logout">Log out</a></center></font></td></tr></table>
<img src="themes/images/PH2BLUE/pixel.gif" width="4" height="3"></td></tr></table></td></tr></table></td><td align="center" bgcolor="#FCFCF C" valign="top" width="100%">
<table width="100%" border="0" cellspacing="5" cellpadding="0" > <tr> <td bgcolor="#0A34A A"><table width="100%" border="0" cellspacing="0" cellpadding="1" > <tr> <td> <table width="100%" border="0" cellpadding="4" cellspacing="0" > <tr><td bgcolor="#F2F1E D">


<!!!!!"YOUR HTML GOES HERE"!!!!!>

<html>

<head>
<script type="text/javascript" src="calendarDa teInput.js">

/*************** *************** *************** **
* Jason's Date Input Calendar- By Jason Moon http://calendar.moonsc ript.com/dateinput.cfm
* Script featured on and available at http://www.dynamicdriv e.com
* Keep this notice intact for use.
*************** *************** *************** **/
</script>
<script language="javas cript">
function printpage()
{
window.print();
}
</script>

</head>

<body>
<h1 align="center"> Staff Accident Form Pilot Scheme</h1>
<center><h2>Thi s form is to be used by Maple and Rowan only.</center></h2>
<form name="Form" form action="http://10.0.0.2/FormTools/staffaccidentre view.php" enctype="multip art/form-data" method="post">
<input type="hidden" name="form_tool s_form_id" value="4" />

<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" height="113" cellSpacing="0" cellPadding="0" width="797" border="0">
<tr>
<td width="286" height="22"><b> Name:</b></td>
<td width="218" colSpan="2" height="22">
<input maxLength="40" size="30" name="name"></td>
</tr>
<tr>
<td width="286" height="22"><b> Person Involved:</b></td>
<td align="left" width="365" height="24">

<select name='person_in volved'><option value=Contracto r selected='selec ted' >Contractor</option><option value=None selected='selec ted' >None</option><option value=Parent selected='selec ted' >Parent</option><option value=Sibling selected='selec ted' >Sibling</option><option value=Staff selected='selec ted' >Staff</option><option value=Staff (agency) selected='selec ted' >Staff (agency)</option><option value=Staff (Bank) selected='selec ted' >Staff (Bank)</option><option value=Student selected='selec ted' >Student</option><option value=Visitor selected='selec ted' >Visitor</option></select>
</td>
</tr>
<tr>
<td width="286" height="22"><b> House / Place of Work:</b></td>
<td width="218" colSpan="2" height="22">
<input maxLength="40" size="30" name="place_of_ work"></td>
</tr>
<tr>
<td width="306" height="20"><sp an lang="en-gb"><b>ABC form completed:</b></span></td>
<td width="337" colSpan="4" height="20">
<input type="checkbox" value="YES" name="abcform"> </td>
</tr>
<tr>
<td width="286" height="22"><b> ABC form number:</b></td>
<td width="218" colSpan="2" height="22">
<input maxLength="40" size="30" name="abcform_n umber"></td>
</tr>

<tr>
<td width="286" height="22"><sp an lang="en-gb"><b>Date of Accident:</b></span></td>
<td width="66" height="22"><sc ript>DateInput( 'date_of_accide nt', true, 'DD-MM-YYYY')</script></td>
<td width="225" colSpan="2" height="22">
<span lang="en-gb"><b>Click on calendar to select date</b></span></td>
</tr>
<tr>
<td width="286" height="22"><b> Time of Accident:</b></td>
<td width="47" height="25">
<input maxLength="8" size="5" name="Time_of_a ccident" value="00:00"></td>
<td width="122" height="25"><b> (hh:mm 24 hour)</b></td>
</tr>
</table>
<p><u><span lang="en-gb"><font color="#ff0000" size="4">Detail s Of Accident</font></span></u></p>
<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" height="108" cellSpacing="0" cellPadding="0" width="651" border="0">
<tr>
<td align="right" width="278" height="24">
<p align="left"><b >Where the Accident Occurred:</b> </td>
<td align="left" width="365" height="24"><se lect name="accident_ location">


<option value="Beech">B eech</option>

<option value="Birch Boys">Birch Boys</option>

<option value="Birch Girls">Birch Girls</option>

<option value="Bracken" >Bracken</option>

<option value="Dining Room">Dining Room</option>

<option value="Educatio n">Education </option>

<option value="Elm">Elm </option>

<option value="Firs">Fi rs</option>

<option value="Grounds" >Grounds</option>

<option value="Home Farm">Home Farm</option>

<option value="Main Hall">Main Hall</option>

<option value="Maple">M aple</option>

<option value="Minibus" >Minibus</option>

<option value="None">No ne</option>

<option value="Oak">Oak </option>

<option value="Off Site">Off Site</option>

<option value="Orchard" >Orchard</option>

<option value="Pool Car">Pool Car</option>

<option value="Rowan">R owan</option>

<option value="SAOS">SA OS</option>

<option value="Soft Play">Soft Play</option>

<option value="Unknown" >Unknown</option>

<option value="Woodland s">Woodlands </option>
</select></td>
</tr>
<tr>
<td align="right" width="278" height="84">
<p align="left"><b >How the Accident occurred:</b> </td>
<td align="left" width="365" height="84">
<textarea name="how" rows="5" cols="44"></textarea></td>
</tr>
<tr>
<td align="right" width="278" height="24">
<p align="left"><b >Student Involved:</b> </td>
<td align="left" width="365" height="24"><se lect name="child_inv olved">

<option value="Aaron Peters">Aaron Peters</option> <option value="Adam Edwards">Adam Edwards</option> <option value="Alex Lyndon-Smith">Alex Lyndon-Smith</option> <option value="Andrew Law">Andrew Law</option> <option value="Anthony Griffiths">Anth ony Griffiths</option> <option value="Benjamin Morris">Benjami n Morris</option> <option value="Callum Mckinlay">Callu m Mckinlay</option> <option value="Charles Green">Charles Green</option> <option value="Chris O'Donnell">Chri s O'Donnell</option> <option value="Christop her Lewis">Christop her Lewis</option> <option value="Conor Lynch">Conor Lynch</option> <option value="Corlel Marshall">Corle l Marshall</option> <option value="Curtis Lloyd">Curtis Lloyd</option> <option value="Daniel Richards">Danie l Richards</option> <option value="David Creasey">David Creasey</option> <option value="David White">David White</option> <option value="Emma Lawrence">Emma Lawrence</option> <option value="Eugene Suzuki">Eugene Suzuki</option> <option value="Frances Campbell">Franc es Campbell</option> <option value="Gail jJones">Gail jJones</option> <option value="George O'Rourke">Georg e O'Rourke</option> <option value="Hardeep Dhami">Hardeep Dhami</option> <option value="Hazheen Siwaily">Hazhee n Siwaily</option> <option value="Heather Ball">Heather Ball</option> <option value="Henry Paterson">Henry Paterson</option> <option value="Hiba Zein-Elabdin">Hiba Zein-Elabdin</option> <option value="Isaac Sullivan">Isaac Sullivan</option> <option value="Jacob Stanley">Jacob Stanley</option> <option value="Jason Cordelle">Jason Cordelle</option> <option value="Joanna Booth">Joanna Booth</option> <option value="Joe Furmage">Joe Furmage</option> <option value="John McAra">John McAra</option> <option value="Jordan Snelgrove">Jord an Snelgrove</option> <option value="Jordan Snelgrove">Jord an Snelgrove</option> <option value="Joshua Harris">Joshua Harris</option> <option value="Kai Powell">Kai Powell</option> <option value="Katie Le Blond">Katie Le Blond</option> <option value="Laura Mooney">Laura Mooney</option> <option value="Liam Dutton">Liam Dutton</option> <option value="Louise Banks">Louise Banks</option> <option value="Louise Hodson">Louise Hodson</option> <option value="Mark Coggin">Mark Coggin</option> <option value="Mark Pearson">Mark Pearson</option> <option value="Marvin Wilson">Marvin Wilson</option> <option value="Matthew Hawkins">Matthe w Hawkins</option> <option value="Matthew Lawford">Matthe w Lawford</option> <option value="Matthew Weber">Matthew Weber</option> <option value="Matthew Whalley">Matthe w Whalley</option> <option value="Michael Canham">Michael Canham</option> <option value="Michael Gingell">Michae l Gingell</option> <option value="Michael Jones">Michael Jones</option> <option value="Nicolas Van Stokkam">Nicola s Van Stokkam</option> <option value="None">No ne</option> <option value="None">No ne</option> <option value="Olivia Vann">Olivia Vann</option> <option value="Owen Wells">Owen Wells</option> <option value="Paul Beadell">Paul Beadell</option> <option value="Peter O'Leary">Peter O'Leary</option> <option value="Reg Price">Reg Price</option> <option value="Sean Grice">Sean Grice</option> <option value="Simon Shabha">Simon Shabha</option> <option value="Simon White">Simon White</option> <option value="Thomas Cox">Thomas Cox</option> <option value="Thomas Litchfield">Tho mas Litchfield</option> <option value="Unknown" >Unknown</option> <option value="Vincent Cook">Vincent Cook</option> <option value="Zachary Lauder">Zachary Lauder</option> </select></td>
</tr>
<tr>


</table>
<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" height="123" cellSpacing="0" cellPadding="0" width="651" border="0">
<tr>
<td width="306" height="20"><sp an lang="en-gb"><b>Taken to Hospital:</b></span></td>
<td width="337" colSpan="4" height="20">
<input type="checkbox" value="YES" name="hospital" ></td>
</tr>
<tr>
<td width="306" height="20"><sp an lang="en-gb"><b>Taken to Doctor:</b></span></td>
<td width="337" colSpan="4" height="20">
<input type="checkbox" value="YES" name="doctor"></td>
</tr>
<tr>
<td width="306" height="20"><sp an lang="en-gb"><b>Next of kin informed :</b></span></td>
<td width="337" colSpan="4" height="20">
<input type="checkbox" value="YES" name="next_of_k in"></td>
</tr>
<tr>
<td width="306" height="20"><sp an lang="en-gb"><b>On call manager informed :</b></span></td>
<td width="337" colSpan="4" height="20">
<input type="checkbox" value="YES" name="on_call"> </td>
</tr>
<tr>
<td width="306" height="20"><sp an lang="en-gb"><b>Ambulanc e called:</b></span></td>
<td width="40" height="20">
<input type="checkbox" value="YES" name="ambulance _called"></td>
<td width="112" height="20">
<p align="right">< b>Time called:</b></td>
<td width="60" height="20">
<input maxLength="8" size="5" name="time_call ed" value="00:00"></td>
<td width="199" height="20"><b> (hh:mm 24 hour)</b></td>
</tr>
<tr>
<td width="306" height="20">&nb sp;</td>
<td width="40" height="20">&nb sp;</td>
<td width="112" height="20">
<p align="right">< b>Time arrived:</b></td>
<td width="60" height="20">
<input maxLength="8" size="5" name="time_arri ved" value="00:00"></td>
<td width="199" height="20"><b> (hh:mm 24 hour)</b></td>
</tr>
</table>







<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" cellSpacing="0" cellPadding="0" width="450" border="0">
<tr>
<td width="277"><b> Cause of injury (1)</b></td>
<td width="170"><se lect name="cause_of_ injury1">

<option value="Bite">Bi te</option>

<option value="Challeng ingBehaviour">C hallengingBehav iour</option>

<option value="Fall">Fa ll</option>

<option value="Falling Object">Falling Object</option>

<option value="Grab">Gr ab</option>

<option value="Hair Pull">Hair Pull</option>

<option value="Hit">Hit </option>

<option value="Hot object/surface">Hot object/surface</option>

<option value="Kick">Ki ck</option>

<option value="Manual handling">Manua l handling</option>

<option value="Missile" >Missile</option>

<option value="None">No ne</option>

<option value="Pinch">P inch</option>

<option value="Pull">Pu ll</option>

<option value="Punch">P unch</option>

<option value="Push">Pu sh</option>

<option value="Restrain t">Restraint </option>

<option value="Scratch" >Scratch</option>

<option value="Seizure" >Seizure</option>

<option value="Self Harm">Self Harm</option>

<option value="Sharp Object">Sharp Object</option>

<option value="Slip">Sl ip</option>

<option value="Trip">Tr ip</option>

<option value="Trodden on">Trodden on</option>

<option value="Unknown" >Unknown</option>
</select></td>
</tr>
<tr>
<td width="277"><b> Injury received (1)</b></td>
<td width="170"><se lect name="injury_re ceived1">

<option value="Bite marks">Bite marks</option>

<option value="Bruise"> Bruise</option>

<option value="Burn">Bu rn</option>

<option value="Cut">Cut </option>

<option value="Fatality ">Fatality</option>

<option value="Fracture ">Fracture</option>

<option value="Hair loss">Hair loss</option>

<option value="Jarred"> Jarred</option>

<option value="Muscle Strain">Muscle Strain</option>

<option value="None">No ne</option>

<option value="Redness" >Redness</option>

<option value="Scald">S cald</option>

<option value="Scratch" >Scratch</option>

<option value="Soreness ">Soreness</option>

<option value="Swelling ">Swelling</option>

<option value="Unconsci ous">Unconsciou s</option>

<option value="Unknown at time">Unknown at time</option>

<option value="Whiplash ">Whiplash</option>
</select></td>
</tr>
<tr>
<td width="277"><b> Injury to part of body (1)</b></td>
<td width="170"><se lect name="injury_to _body_part1">


<option value="Ankle">A nkle</option>

<option value="Arm">Arm </option>

<option value="Back">Ba ck</option>

<option value="Breast"> Breast</option>

<option value="Chest">C hest</option>

<option value="Ear">Ear </option>

<option value="Elbow">E lbow</option>

<option value="Eye">Eye </option>

<option value="Face">Fa ce</option>

<option value="Finger"> Finger</option>

<option value="Finger"> Finger</option>

<option value="Foot">Fo ot</option>

<option value="Groin">G roin</option>

<option value="Hand">Ha nd</option>

<option value="Head">He ad</option>

<option value="Knee">Kn ee</option>

<option value="Leg">Leg </option>

<option value="Mouth">M outh</option>

<option value="Neck">Ne ck</option>

<option value="None">No ne</option>

<option value="Nose">No se</option>

<option value="Shin">Sh in</option>

<option value="Shoulder ">Shoulder</option>

<option value="Stomach" >Stomach</option>

<option value="Thumb">T humb</option>

<option value="Toe">Toe </option>

<option value="Wrist">W rist</option>
</select></td>
</tr>
<tr>
<td width="277"><b> Cause of injury (2)</b></td>
<td width="170"><se lect name="cause_of_ injury2">

<option value="Bite">Bi te</option>

<option value="Challeng ingBehaviour">C hallengingBehav iour</option>

<option value="Fall">Fa ll</option>

<option value="Falling Object">Falling Object</option>

<option value="Grab">Gr ab</option>

<option value="Hair Pull">Hair Pull</option>

<option value="Hit">Hit </option>

<option value="Hot object/surface">Hot object/surface</option>

<option value="Kick">Ki ck</option>

<option value="Manual handling">Manua l handling</option>

<option value="Missile" >Missile</option>

<option value="None">No ne</option>

<option value="Pinch">P inch</option>

<option value="Pull">Pu ll</option>

<option value="Punch">P unch</option>

<option value="Push">Pu sh</option>

<option value="Restrain t">Restraint </option>

<option value="Scratch" >Scratch</option>

<option value="Seizure" >Seizure</option>

<option value="Self Harm">Self Harm</option>

<option value="Sharp Object">Sharp Object</option>

<option value="Slip">Sl ip</option>

<option value="Trip">Tr ip</option>

<option value="Trodden on">Trodden on</option>

<option value="Unknown" >Unknown</option>
</select></td>
</tr>
<tr>
<td width="277"><b> Injury received (2)</b></td>
<td width="170"><se lect name="injury_re ceived2">

<option value="Bite marks">Bite marks</option>

<option value="Bruise"> Bruise</option>

<option value="Burn">Bu rn</option>

<option value="Cut">Cut </option>

<option value="Fatality ">Fatality</option>

<option value="Fracture ">Fracture</option>

<option value="Hair loss">Hair loss</option>

<option value="Jarred"> Jarred</option>

<option value="Muscle Strain">Muscle Strain</option>

<option value="None">No ne</option>

<option value="Redness" >Redness</option>

<option value="Scald">S cald</option>

<option value="Scratch" >Scratch</option>

<option value="Soreness ">Soreness</option>

<option value="Swelling ">Swelling</option>

<option value="Unconsci ous">Unconsciou s</option>

<option value="Unknown at time">Unknown at time</option>

<option value="Whiplash ">Whiplash</option>
</select></td>
</tr>
<tr>
<td width="277"><b> Injury to part of body (2)</b></td>
<td width="170"><se lect name="injury_to _body_part2">


<option value="Ankle">A nkle</option>

<option value="Arm">Arm </option>

<option value="Back">Ba ck</option>

<option value="Breast"> Breast</option>

<option value="Chest">C hest</option>

<option value="Ear">Ear </option>

<option value="Elbow">E lbow</option>

<option value="Eye">Eye </option>

<option value="Face">Fa ce</option>

<option value="Finger"> Finger</option>

<option value="Finger"> Finger</option>

<option value="Foot">Fo ot</option>

<option value="Groin">G roin</option>

<option value="Hand">Ha nd</option>

<option value="Head">He ad</option>

<option value="Knee">Kn ee</option>

<option value="Leg">Leg </option>

<option value="Mouth">M outh</option>

<option value="Neck">Ne ck</option>

<option value="None">No ne</option>

<option value="Nose">No se</option>

<option value="Shin">Sh in</option>

<option value="Shoulder ">Shoulder</option>

<option value="Stomach" >Stomach</option>

<option value="Thumb">T humb</option>

<option value="Toe">Toe </option>

<option value="Wrist">W rist</option>
</select></td>
</tr>





</table>
<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" cellSpacing="0" cellPadding="0" width="654" border="0">
<tr>
<td align="right" width="278" height="25">
<p align="left"><b >Describe in detail any treatment given:</b></td>
<td align="left" width="376" height="25">
<textarea name="describe_ treatment" rows="5" cols="44"></textarea></td>
</tr>
</table>
<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" height="27" cellSpacing="0" cellPadding="0" width="654" border="0">
<tr>
<td width="278" height="1"><b>N ame of any witnesses to incident:</b></td>
<td width="376" height="1">
<input maxLength="40" size="30" name="name_of_w itness"></td>
</tr>
<tr>
<td width="278" height="1"><b>S taff on duty:</b></td>
<td width="376" height="1">
<input maxLength="40" size="30" name="staff_on_ duty"></td>
</tr>
<tr>
<td width="278" height="1"><b>A ny other details:</b></td>
<td width="376" height="1">
<textarea name="other_det ails" rows="5" cols="44"></textarea></td>
</tr>
<tr>
<td width="278" height="1"><b>N ame of person completing form:</b></td>
<td width="376" height="1">
<input maxLength="40" size="30" name="name_of_f orm_filler"></td>
</tr>
</table>
<table style="BORDER-COLLAPSE: collapse" borderColor="#1 11111" height="24" cellSpacing="0" cellPadding="0" width="653" border="0">
<tr>
<td width="278" height="1"><spa n lang="en-gb"><b>Date:</b></span></td>
<td width="80" height="1">
<script>DateInp ut('date', true, 'DD-MM-YYYY')</script></td>
<td width="225" colSpan="2" height="22">
<span lang="en-gb"><b>Click on calendar to select date</b></span></td>
</tr>
</table>

<p align="center"> &nbsp;</p>
<p align="center">
<input type="submit" value="Submit" name="Confirmat ion:Your request has been received and is being processed.">
<input type="reset" value="Reset Form" name="B2">
</p>
</form>

<hr width="80%" color="#000000" ><span lang="en-gb">



<p align="center"> Page created &amp; maintained by PaulC</p>
<p align="center"> Page last updated 26/09/2007</p>
</span>

</body>

</html>
<!!!!!"YOUR HTML STOPS HERE"!!!!!></td> </tr> </table></td></tr></table></td> </tr></table></td></table><table border="0" cellpadding="0" cellspacing="0" width="100%" id="AutoNumber1 " height="36" background="the mes/PH2BLUE/images/bottomline.jpg" ><td align="center" width="100%"><f ont class="dcode">< b> &copy; 2006 Sunfield Childrens Homes Ltd</b></font><br>Create d and maintained by PaulC</font></td></table></body>
</html>[/HTML]
Oct 2 '07 #16
DirtySnipe
19 New Member
This stupid forum wont allow me to post the code.

It just keeps displaying a blank page. Ive tried using html code and the normal code and eve the phpcode tags and it wont work on any!!!!!
Oct 2 '07 #17
nathj
938 Recognized Expert Contributor
[quote=DirtySnip e].
[html]
<form action="modules .php" method="get" name="sommairef ormlistboxinact ifs"><select name="somlistbo xinactifs" onchange="somma ire_envoielistb ox(this.options[this.selectedIn dex].value)"><optio n value="select"> Select...<optio n value="modules. php?name=accide nt1">accident1< option value="modules. php?name=Amazon ">Amazon<op tion value="modules. php?name=AvantG o">AvantGo</select></form>
</font></td></tr></table>
[/html]

Hi,
I've taken just a sample of the code you supplied, it came through on the email notification and it was there when I clicked reply. I noticed that the option tags are not being closed. Each option tag needs to be closed.

I would double check the following things:
1) Is the isDefault record set against one record in the database
2) Ensure that the PHP supplies a closing option tag for each option.

Here is a sample of the output my code (see my original post) produces including teh selected attribute:
[html]
<!-- code snippet -->
<option value="9">Unite d Arab Emirates</option><option selected="selec ted" value="78">Unit ed Kingdom</option><option value="230">Uni ted States</option>
[/html]
Cheers
nathj

Ps I think the code restriction is due to the length of one single line? It's a guess but hey that's ok, and I got the code anyway.
Oct 2 '07 #18
DirtySnipe
19 New Member
Here is what is being displayed.


[HTML]<select name='person_in volved'><option value=Contracto r selected='selec ted' >Contractor</option><option value=None selected='selec ted' >None</option><option value=Parent selected='selec ted' >Parent</option><option value=Sibling selected='selec ted' >Sibling</option><option value=Staff selected='selec ted' >Staff</option><option value=Staff (agency) selected='selec ted' >Staff (agency)</option><option value=Staff (Bank) selected='selec ted' >Staff (Bank)</option><option value=Student selected='selec ted' >Student</option><option value=Visitor selected='selec ted' >Visitor</option></select>
[/HTML]
Oct 2 '07 #19
nathj
938 Recognized Expert Contributor
Here is what is being displayed.


[HTML]<select name='person_in volved'><option value=Contracto r selected='selec ted' >Contractor</option><option value=None selected='selec ted' >None</option><option value=Parent selected='selec ted' >Parent</option><option value=Sibling selected='selec ted' >Sibling</option><option value=Staff selected='selec ted' >Staff</option><option value=Staff (agency) selected='selec ted' >Staff (agency)</option><option value=Staff (Bank) selected='selec ted' >Staff (Bank)</option><option value=Student selected='selec ted' >Student</option><option value=Visitor selected='selec ted' >Visitor</option></select>
[/HTML]
Hi,

This code sample makes things a bit clearer. All your options are set as selected. I would check the database to ensure that only one item in the table has isDefault=1. Assuming the code below is what is in place on the server side of things then I can only think of a data issue as being the cause of this problem

Cheers
nathj
Oct 2 '07 #20

Sign in to post your reply or Sign up for a free account.

Similar topics

2
1761
by: xxbmichae1 | last post by:
I am writing a function that will create different type of input ranges, example one function that will create date range inputs with drop down calendars, another will be for currency ranges, another for uppercase input, etc.... anyway, the drop down calendar I am using has a javascript you call after the html of your edit box and object to click on to drop the calendar....is there a way or is it correct to say, that if you use innerHtml...
1
1688
by: ayende | last post by:
Okay, I'm pretty sure that I'm doing everything right here, but something is very wrong in the result. I've a page that has a drop down list (with auto-post-back = true) and a place holder. During page load, I'm loading a control dynamically (using LoadControl()) and adding it to the place holder. In the control OnInit(), I load some values into it.
1
1579
by: daveyand | last post by:
Hey guys, I am currently stuck, i am trying to create a function that will create a fresh new drop down option box dynamically. What happens is the user can double click an element on the page, when they do this function should be called and create the drop down. I can do the innerHTML stuff, i know how to add new options but am stuck as to how to create the initial object in the first place.
6
8301
by: mcgrew.michael | last post by:
I hope this is the right group. I am very new to ASP so this is probably a stupid question. I have some vbscript that query's AD and populates a recordset. I know the recorset contains the information I want by doing a Response.write. I am having problems dynamically creating a drop down list from the data in the recordset. The drop down is created but it is empty. Any help would be greatly appreciated. A sample of the code: <% 'On...
2
1792
by: Jim Gregg | last post by:
Hello all, I am faced with some logic that I am unsure how to handle. Imagine that I am running a WMI query and I am outputting the data into a dynamically created ASP table control. Here is my code that does this. I have left out the portion that connects to my server and the query, but this should be enough to show what I am doing. Basically it is a web page that queries SMS for clients in a certain collection, then outputs the name...
2
4333
by: vinceboy | last post by:
Hi anybody. I am newbie here and would like to know that how can I validate both drop down menu and radio button from a dynamic display form.Something went wrong with my script.The radio button is dynamic,however drop down menu is static. <script language="JavaScript" type="text/JavaScript"> function formSubmit(obj) { var returnStatus = 1; if (obj.rNumber.selectedIndex == 0 || !(movieList.time;?>].checked)) {
1
3463
by: bytesFTW99 | last post by:
I have been struggling with this for some time can anyone help out? just trying to have 3 dropdown boxes that fill depending on what is selected, then in some cases click a button and have the second set of 3 dropdown boxes be filled with the same values. thank you <head> <SCRIPT LANGUAGE="JavaScript" type="text/javascript"> var firstChoice2 = 0; var secondChoice2 = 0;
3
2804
by: happyman992 | last post by:
Hi, I have 2 questions. First, I am building a form with multiple drop down boxes. The options of the second drop down box will depend on what the user chooses on the first, options of the third drop down box depend on what they choose on the second, etc. The values of each option are inside a database which I can query for and put into a php array. I am wondering what is the easiest way to build this. Second, when this form is...
4
2770
by: audreyality | last post by:
I am new to javascript and appreciate any guidance on this issue, so thank you in advance for your advice! Situation: I am working with a form that will send information to a database. I need the following: A drop-down box of options that onChange=... Opens another drop-down box of unique options that onChange=... Displays text dependent on which option you chose. An example:
0
8604
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9028
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8895
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8861
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6518
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5860
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4619
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3046
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2330
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.