-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstep04.php
More file actions
executable file
·39 lines (29 loc) · 882 Bytes
/
step04.php
File metadata and controls
executable file
·39 lines (29 loc) · 882 Bytes
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
<?php
session_save_path("tmp");
session_start();
?>
<HTML>
<HEAD>
<link rel="stylesheet" href="css/tab-view.css" type="text/css" media="screen">
<script type="text/javascript" src="js/tab-view.js"></script>
</HEAD>
<BODY>
<FONT style="font-family: Arial, Helvetica, sans-serif;">
<p><span style="border-bottom: 3px solid #FFCC00;">
Select one script
</span></p>
<form name="formstep04" method="post" action="choices.php" target="choices">
<select name="selectscript" size="4"
style="width: 1000px; font-family: Arial, Helvetica, sans-serif;">
<option selected="selected" value="plot01">plot01: Time series</option>
<option value="plot02">plot02: Time series (time axis as indices)</option>
</select>
<p>
<input type="submit" value="Validate"
style="font-family: Arial, Helvetica, sans-serif;"
title="Validate Step 4">
</p>
</form>
</FONT>
</BODY>
</HTML>