private static function _displaySalida() { $vista = "salida"; self::$_marca = $_COOKIE["cookieCoche"]["marca"]; self::$_modelo = $_COOKIE["cookieCoche"]["modelo"]; self::$_motor = $_COOKIE["cookieCoche"]["motor"]; self::$_combustible = $_COOKIE["cookieCoche"]["combustible"]; self::$_cc = $_COOKIE["cookieCoche"]["cilindrada"]; self::_retornarVista($vista); }
public function run() { $accion = ""; if (isset($_POST["enviar"])) { $accion = "guardar"; } elseif (isset($_GET["accion"]) && $_GET["accion"] == "eliminar") { $accion = "eliminar"; echo $accion; } cocheVista::displayPagina($accion); }