Skip to content

Commit

Permalink
whatever i changed
Browse files Browse the repository at this point in the history
  • Loading branch information
crutchy- committed Jan 24, 2015
1 parent 6bcc1d7 commit c72d731
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion website/z.cr.rs.inc
Expand Up @@ -10,7 +10,13 @@
RewriteRule . /index.php [L]
*/

echo "<html><head><title>z.cr.rs</title></head><body><p>Welcome to <b>z.cr.rs</b>.</p><p>-- crutchy</p>";
$title="z.cr.rs";
if (isset($_GET["i"])==True)
{
$title=$title." - ".$_GET["i"];
}

echo "<html><head><title>$title</title></head><body><p>Welcome to <b>z.cr.rs</b>.</p><p>-- crutchy</p>";

if (isset($_GET["i"])==True)
{
Expand Down

0 comments on commit c72d731

Please sign in to comment.