I need to edit the inside of the following comment tag so that I can change the location of the css file. This needs to be done through PHP. I have tried using the following code but I get invalid expression errors.
Comment Section:
<!--[if IE 6]><link rel="stylesheet" type="text/css" href="/Css/IE6.css" media="screen" /><![endif]-->
Code that does not work:
$csslist = $xpath->query("//<!--[if IE 6]>");
foreach($csslist as $css) {
$css->innertext = 'test';
}