Do I have index.php? stol = XY. Now I want to open gotovo.php with the same "stol" as in index.php. This is my code:
<a href="<?php "gotovo.php?stol=".$_GET['stol'] ?>">Link1</a>
What am I doing wrong?
try it
<a href="<?= "gotovo.php?stol=".$_GET['stol'] ?>">Link1</a>