<?php if ($style == "red" ) { $choice = "red"; } elseif ($style == "blue" ) { $choice = "blue"; } else { $choice = "default2"; } ?> <html> <head> <title>dymanic css</title> <LINK REL=stylesheet HREF="<?php echo "$choice"; ?>.css"> </head> <body> this text should change color<br> <a href="?style=blue">blue</a><br> <a href="?style=red">red</a> </body> </html>