I want to echo a stylesheet inside the head section of a web page. Right now when I do this:
if($browser == "Opera")
{
echo "<link type='text/css' rel='stylesheet' src='/opera.css' media='screen' />";
}
it does echo the style sheet in the source code and not the page itself which is good but it doesn't echo it inside the <head></head>
section. How can this be done?