Dead PHP3 Code

People don’t write PHP like this anymore, or, if they do, they get hurt badly. This is old code of mine. Timestamp is January 29, 2002. Yeesh.

<?
$where_they_are = 'http://' . $SERVER_NAME . $REQUEST_URI;
if ($HTTP_REFERER!='')
{ $recipientlist='joe@artlung.com';
$emailsubject="visit to $SERVER_NAME via " . $HTTP_REFERER;
$emailbody="someone came to $where_they_are
via $HTTP_REFERER
ip address:  $REMOTE_ADDR
remote host: $REMOTE_HOST
user agent:  $HTTP_USER_AGENT
cool.";
$firstname='ArtLung.com';
$lastname='Notification Email';
$email='bot@artlung.com';
mail(
$recipientlist, $emailsubject, $emailbody,
"From: $firstname $lastname <$email>\nReply-To: $email\nX-Mailer: PHP/" .
phpversion());
} else { echo '<!--mailreferer.php3-->'; };
?>

one comments so far...

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.