|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/gwsolutions/includes/ |
Upload File : |
<?php
$file = basename($_SERVER['REQUEST_URI']);
//echo basename($_SERVER['REQUEST_URI']);
?>
<!-- services index -->
<div class="col-md-4 col-md-pull-8">
<div class="list-group">
<?php
for ($i = 0; $i < count($services,2); $i++) {
echo '<a href="'.$services[$i][1].'" class="list-group-item ';
if (strcasecmp($file,$services[$i][1]) == 0) echo 'active';
echo '">'.$services[$i][0].'</a>';
}
// output is like this: <a href="services.php" class="list-group-item active"> Overview </a>
// or for non active : <a href="services.php" class="list-group-item"> Overview </a>
?>
<table width="300" border="0">
<tr>
<td height="40" style="align:left">
<p> </p></td>
</tr>
<tr>
<td style="padding-right:50px"><span style="align:left"><a href="Articles/GWS_ExtendAnalysis_2015.pdf" target="_blank"><img src="images/thumb-ea.png" alt="" width="250" height="324" class="img-responsive" padding-left=20 align="left"/></a></span></td>
</tr>
<tr>
<td height="40" style="padding-right:50px"><a href="Articles/GWS_ExtendAnalysis_2015.pdf" target="_blank">Extended Analysis Brochure</a></td>
</tr>
</table>
</div>
</div>
<!-- end of benchmarking index -->