removed css links, clean up

This commit is contained in:
Hash Borgir 2023-06-14 13:52:55 -06:00
parent 6c74c8b23a
commit 64daee85bb

View File

@ -50,9 +50,7 @@ foreach (glob($tbl . "*.tbl") as $filename) {
<!-- Bootstrap DataTables JS -->
<script src="https://cdn.datatables.net/1.11.4/js/dataTables.bootstrap4.min.js"></script>
<title>Editable Tables</title>
<!--<link rel="stylesheet" href="https://bootswatch.com/4/lumen/bootstrap.min.css">-->
<!-- <link rel="stylesheet" type="text/css" href="res/95assets/win95.css">-->
<title>Editable Tables</title>
</head>
<body>
<div style="padding:10px; border: 1px solid #eee;">
@ -60,7 +58,7 @@ foreach (glob($tbl . "*.tbl") as $filename) {
<div class="row">
<div class="col-md-6">
<select name="tableName" id="tableName" class="form-control">
<option value="" disabled selected>_______________SELECT TBL FILE_______________</option>
<option value="" disabled selected></option>
<?php foreach ($tableNames as $tableName): ?>
<option value="<?php echo $tableName; ?>" <?php echo ($tableName == "") ? "selected" : ""; ?>><?php echo $tableName; ?></option>
<?php endforeach; ?>