Added edit notes, and added a bunch of delete functionality, fixed edit categories not showing correct type

This commit is contained in:
root
2019-03-22 01:32:34 -04:00
parent bf5b055ad7
commit 62f86df80e
17 changed files with 218 additions and 16 deletions

View File

@@ -16,7 +16,7 @@
<div class="form-group">
<label>Type</label>
<select class="form-control" name="type" required>
<?php foreach($category_types_array as $category_type2 => $category_type2) { ?>
<?php foreach($category_types_array as $category_type2) { ?>
<option <?php if($category_type == $category_type2) { echo "selected"; } ?>><?php echo $category_type2; ?></option>
<?php } ?>
</select>