Site Cloner PHP Script
Bargain Hunter PHP Script
Job Hunter PHP Script
Site Login and Access Control PHP Script

Explorer stylesheets of any version can be simply added to most index.php files with:

<!–[if IE ]>
  <link href=”ie.css” rel=”stylesheet” type=”text/css”>
<![endif]–>
But, other browsers need a bit more tweaking.
 
The code below can be used for specific stylesheets like Opera or Firefox.
 
<?
if(preg_match(“/opera/i”, $_SERVER[‘HTTP_USER_AGENT’]))
{
  //$browser_css = “-opera”;
echo ‘<link rel=\”stylesheet\” type=\”text/css\” href=\”opera.css\” />’;
echo ‘<link rel=”stylesheet” type=”text/css” href=”opera.css” />’;
}
?>