I’m trying to create a style selector.
I have the following code to check if $style is set in the url:
<?php
if (isset($_GET['style'])){
$style = $_GET['style'];
} else {
$style = style;
}
?>
I then have this as my link tag:
<link href=“style/<?php $style; ?>.css” rel=“stylesheet” type=“text/css”>
The link is being changed and $style is being set in the URL but its not changing the style…