index.php
1.73 KB
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
<header>
<nav class="navbar navbar-default navbar-static-top" role="navigation">
<ul class="nav navbar-nav">
<li><a href="/count_form.php/?p=admin">Услуги</a></li>
<li><a href="/count_form.php/?p=sub_quest">Вопросы</a></li>
<li><a href="http://seo.artweb.ua/count_form.php/">Выйти</a></li>
</ul>
</nav>
</header>
<h1>Вопросы</h1>
<a class="button_style" href="/count_form.php/?p=admin&sp=add">Добавить</a>
<table class="table table-hover" data-url="/sort_user">
<thead>
<tr>
<th id="id">id</th>
<th id="id">parent_id</th>
<th id="name" class="sortable"><p>Вопрос</p></th>
<th id="email" class="sortable"><p>Статус</p></th>
<th id="status" class="sortable"><p>Вес</p></th>
<th class="table-buttons"></th>
</tr>
</thead>
<tbody id="result">
<?php foreach ($data['data'] as $item):?>
<tr>
<td><?= $item['id']; ?></td>
<td><?= $item['parent_id']; ?></td>
<td><?= $item['text']; ?></td>
<td><?= $item['status'] ?></td>
<td><?= $item['status'] ?></td>
<td>
<a href="/count_form.php/?p=admin&sp=index&a=delete&id=<?=$item['id'] ?>" class="action-img"><img src="/count_form/images/del.png" title="удалить"></a>
<a href="/count_form.php/?p=admin&sp=edit&id=<?=$item['id'] ?>" class="action-img"><img src="/count_form/images/change.png" title="редактировать"></a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
<a class="button_style" href="/count_form.php/?p=admin&sp=add">Добавить</a>