Skip to content

Instantly share code, notes, and snippets.

@tarnfeld
Created January 8, 2011 00:42
Show Gist options
  • Save tarnfeld/770377 to your computer and use it in GitHub Desktop.
Save tarnfeld/770377 to your computer and use it in GitHub Desktop.
<?php
function stylesheet($title = 'Home Page')
{
$filename = trim(strtolower($title)); // EG: "Home Page" => "homepage"
echo '<link rel="stylesheet" href="../css/' . $filename . '.css" type="text/css" media="all" />';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment