Kommentare

This commit is contained in:
eichehome 2021-12-05 14:21:13 +01:00
parent 2113079311
commit 9d730633ad
6 changed files with 34 additions and 32 deletions

View file

@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
error_reporting(E_ALL); //Debuging
require_once 'include/DBConnection.inc.php';
function autoloader($classname)
@ -73,10 +73,10 @@ if (isset($_SESSION["login"]) && $session->get("login") == 1) {
</head>
<body>
<!-- Ausgabe einer eventuellen Statusmeldung -->
<?php if (isset($message) && $message != ""): ?>
<div class="modal">
<div class="message sucsses">
<!-- Ausgabe einer eventuellen Statusmeldung -->
<p><?php echo $message; ?></p>
</div>
</div>