Se puede hacer eso con php.
Se usa '$_GET'.
El enlace sería algo así:
Código:
<a href="ejemplo.php?estilo=2">ejemplo</a>
Y en tu página tendría algo así:
Código PHP:
<link rel="stylesheet" type="text/css" href="estilo<?php echo @$_GET['estilo']; ?>.css">