Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<a href="seite2.php?aktion=tu_das">Aktionslink</a>
if($_GET['aktion'] == "tu_das") { Header("Location: auszufuehrender_link.php"); }
Aaaaalso nochmal etwas verständlicher
Sp89
Das ganze soll dann so weitergeführt werden das wenn ich das ganze von Seite3 mache der Link2 auf Seite 2 ausgeführt werden soll usw. ...
<a href="seite2.php?kommt_von=seite1">Link</a>
<?php
if($_GET['kommt_von'] == "seite1") {
echo "<div>Gewünschten Inhalt hier einfügen</div>";
}
?>