I am trying to create a function in my sitewide-variables.php that will echo some additional css (which doesn't need to be included with every page) in the head of the page and at the same time to include file.php (that uses the css needed in the head) inside the body section of the page if the page is number 1 for instance, obviously if the page is number 2 than nothing has to be echoed or included at all.
something similar to the following
<head><?php include("/variables/sitewide-variables.php"); ?>
<link href="css/style_new.css" rel="stylesheet" type="text/css">
<?php $number = 1; echo $css?>
</head>
<body>
<?php $number = 1; include $file.php?>
</body>
My understanding of this is to create something similar to the following inside the sitewide-variables.php
<?php
$css[$number] = 'selected';
echo isset($css[1]) ? $css['some css code'] : ''
?>
and this is as far as I can go with it.
I know that all above might simply be one huge mistake, but I hope that this is enough to explain what I am actually trying to achieve.
As you can probably guess, my knowledge of php is very limited.
as always, you help is appreciated!!
