-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquadChart.php
More file actions
37 lines (36 loc) · 804 Bytes
/
quadChart.php
File metadata and controls
37 lines (36 loc) · 804 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
<?php
// nothing dynamic yet!
?><html>
<head>
<title>QUad Chart</title>
</head>
<body>a
<h1>Quad Charts!</h1>
<form>
<table>
<tr>
<td>
<textarea name="topLeft" rows="4" cols="50" value="Things to be done this week">
</textarea>
</td>
<td>
<textarea name="topRight" rows="4" cols="50" value="Things to be done this week">
</textarea>
</td>
</tr>
<tr>
<td>
<textarea name="bottomLeft" rows="4" cols="50" value="Things to be done this week">
</textarea>
</td>
<td>
<textarea name="bottomRight" rows="4" cols="50" value="Things to be done this week">
</textarea>
</td>
</tr>
<!-- and more rows here ... -->
</table>
<input type="submit" value="Save" />
</form>
</body>
</html>