<?php
if(isset($_COOKIE['test']))
echo '<font color=green>Thank you for the cookie!</font>';
else
echo '<font color=red>No cookie!</font>';
echo '</br></br>';
if(isset($_GET['dump'])) print_r($_COOKIE);
highlight_file(__FILE__);