-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcekTable.php
More file actions
41 lines (40 loc) · 748 Bytes
/
Copy pathcekTable.php
File metadata and controls
41 lines (40 loc) · 748 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
40
41
<form method="post">
<textarea name="input"></textarea>
<button type="submit" name="button">button</button>
<table class="table table-bordered" id="tableAll">
<thead>
<tr>
<th class="col-md-1">name</th>
</tr>
</thead>
<tbody>
<tr>
<?php
if(isset($_POST['button']))
{
echo "<td>".$_POST["input"]."</td>";
}
?>
</tr>
</tbody>
</table>
<br><br><br><br><br>
<table class="table table-bordered" id="tableAll">
<thead>
<tr>
<th class="col-md-1">name</th>
</tr>
</thead>
<tbody>
<tr>
<select>
<option>saya</option>
<option>coba</option>
</select>
</tr>
</tbody>
</table>
</form>
<style>
td { white-space:pre }
</style>