I need to determine if $_SERVER['QUERY_STRING'] contains ?p . (the question mark followed by a p) and if it does NOT, serve a set of javascript files, if it does, do NOT serve those javascript files inside a hardcoded header.
example
if ?p is not present include these
if ?p is present do not include them...
any help would be very appreciated
thank you
example
if ?p is not present include these
Code:
<script type="text/javascript" src="<? bloginfo('template_url')?>/css/jquery.js"></script>
<script type="text/javascript" src="<? bloginfo('template_url')?>/css/interface.js"></script>
if ?p is present do not include them...
any help would be very appreciated
thank you