<?php
$id = $_GET["a"];
$id = $_GET["b"];
$id = $_GET["c"];
echo "
<a href='test.php?a=$id'>Tab-A</a> |
<a href='test.php?b=$id'>Tab-B</a> |
<a href='test.php?o=$id'>Tab-C</a> |
<br>
";
?>
I can’t get this work, im try to make some tab function with simple link.
I have a URL as test.php?a=27, test.php?b=27 and test.php?c=27 and need to take that id number for tab-a, tab-2 and tab-3.
Is it possible take id-number from this deferent GET and use or return back to link tab-a, tab-2 and tab-3?