Code: Select all
<div class="listActions">
<form action="" method="post">
<label for="actionSelect">With selected items: </label>
<select class="select" name="actionSelect" id="actionSelect">
<option>Edit</option>
<option>Delete</option>
</select>
<button class="button small-button"><strong>Apply</strong></button>
</form>
</div>
Code: Select all
<?php
while ( $row = mysqli_fetch_array ( $result, MYSQL_ASSOC ) ) {
echo '
<tr>
<td><input type=checkbox class=checkbox /></td>
<td>' . $row['menuname'] . '</a></td>
<td><a href=# id="menuitems" title="' . $row['menuname'] . ' Structure Items">Menu Items</a></td>
<td>' . $row['name'] . '</a></td>
<td class=last>' . $row['datecreated'] . '</td>
</tr>';
}
?>