html to php

Ich habe einige .html-Dateien zu .php gemacht, damit der include-Befehl funktioniert
This commit is contained in:
NOrtmann1
2026-04-20 17:17:30 +02:00
parent bc44f261ac
commit 01e94d7f6a
3 changed files with 0 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
<!--
Globales Menü, wird via PHP später in alle Seiten eingebunden
-->
<div style="width: 100%; z-index: 1; position: fixed">
<div style="width: 20%;">
<img src="../images/logo.png" style="height: 44px; ">
</div>
<a href = "../content/informatik.html" style = "color: white; padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Informatik</b></a>
|
<a href = "../content/mathe.html" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Mathe</b></a>
|
<a href = "../content/physik.html" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Physik</b></a>
|
<a href = "../content/profile.html" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Dein Profil</b></a>
<?php
include_once 'includes/search.html';
?>
<div>
<a href = "index.html?pfad=auth/login.html" style = "background-color: #f44336; color: white; padding: 4px 20px; text-align: center; text-decoration: none; display: inline-block;"> Anmelden </a>
</div>
<div>
<a href = "index.html?pfad=auth/register.html" style = "background-color: #f44336; color: white; padding: 4px 20px; text-align: center; text-decoration: none; display: inline-block;"> Registrieren </a>
</div>
</div>