Thread: Coding Game!
View Single Post
10-09-2006, 03:39 PM
#29
Mikor is offline Mikor
Mikor's Avatar
Status: I'm new around here
Join date: Sep 2006
Location: Hull, England
Expertise:
Software:
 
Posts: 21
iTrader: 0 / 0%
 

Mikor is on a distinguished road

Send a message via MSN to Mikor

  Old

<?php
header('Content-type: text/plain');

$php = 'good';
$asp = 'bad';

if($_GET['asp'] != $asp || $_GET['php'] != $php){
echo 'You either dont like php, or you like asp...'.ord(10).ord(10).ord(10).'WHY???';
}else{
echo 'You hate asp and like php! Good.';
}
?>