So far I've only coded in ASP and now that I'm creating a site om a server that only can handled PHP I need a little help :wink: .
What I'm asking is if someone could write the following code for me (it should be rather easy)
If ?mode=print is added after the filename (.php) then use this css:
<LINK href="../css/print.css" type=text/css rel=stylesheet>
instead of this one:
<LINK href="../css/Style.css" type=text/css rel=stylesheet>
In ASP it would look like this:
<%If request.querystring("mode")="print" then%>
<LINK href="../css/print.css" type=text/css rel=stylesheet>
<%else%>
<LINK href="../css/style.css" type=text/css rel=stylesheet>
<%end if%>
Hope someone understands what I'm aiming for



)
