Hack Test
August 10th, 2008Here is a challenge for you: http://www.hack-test.com
I am on level 11 and stuck. (A google search got me to level 12 but I still want to be able to solve level 11).
How high can you go?
Here is a challenge for you: http://www.hack-test.com
I am on level 11 and stuck. (A google search got me to level 12 but I still want to be able to solve level 11).
How high can you go?
I am currently working on a complex website that requires two different companies on two different domains to share the same website. I have just mananged to create a piece of php code to analyse the domain name typed in and redirect to the correct section of the site for that company. Awesome!
$url = $_SERVER['HTTP_HOST'];
if(strpos( strtolower($url), “site2″ )!=FALSE) {
header(’location:site2/index.php’);
} else {
header(’location:site1/index.php’);
}
It is not often that code makes me happy.