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