-
Notifications
You must be signed in to change notification settings - Fork 1
/
inputFiles00.php
55 lines (52 loc) · 1.7 KB
/
inputFiles00.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php include("parts_checkSession.php"); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Language" content="en-US" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="css/frame.css" />
<script src="js/function.js" type="text/javascript"></script>
<title>Input Files step00</title>
</head>
<body>
<div id="container">
<?php include("parts_header.php"); ?>
<?php include("errMsg.php"); ?>
<div id="content">
<?php $p_page="input00"; include("parts_title.php"); ?>
<div id="tabs">
<ul>
<li>
<span class="active">Step 0. Select Model</span>
</li>
</ul>
</div>
<form id="form1" method="post" action="checkFileFormat.php" enctype="multipart/form-data">
<?php $p_page="input00"; include("parts_explain.php"); ?>
<?php
if (isset($_SESSION["errFlg"])) {
$errMsg = getSessErrMsg($_SESSION["errFlg"]);
echo "<div id='errMsg'>" . $errMsg . "</div>";
}
?>
<table id="inputArea" align="center">
<tr>
<td id="titleCol">Model :</td>
<td id="inputCol">
<select id="FileFormat" name="FileFormat" style="width: 191px;">
<option value="1">DSSAT</option>
</select>
</td>
</tr>
</table>
<div id="subBtns">
<input type="button" value="Back" onclick="goBack();" />
<input id="SubmitN" type="submit" value="Next" onclick="" />
<input id="SubmitF" type="button" value="Finish" disabled ="disabled" />
</div>
</form>
</div>
<?php include("parts_footer.php"); ?>
</div>
</body>
</html>