Es el mismo concepto que post en vez de usar un formulario puedes escribir la dirección directamente en un link el formato debe ser así.
Código html:
Ver original<a href="index.php?variable1=valor1&variable2=valor2&variable3=valor3&etc=etc">link
</a>
Y cuando lo llames en vez de usar $_POST usas $_GET.
Código php:
Ver originalecho $GET["variable1"];
echo $GET["variable2"];
echo $GET["variable3"];
echo $GET["etc"];