getCookie() just grabs a desired cookies value.
Parameter: $cookieName - the name of the cookie you want to get the data from. Expects: a cookie name.
Location: class.sodapop.php
public function getCookie($cookieName) {
$cookie = $_COOKIE[$cookieName];
return $cookie;
}