<?php 
 
/* 
 * Copyright @ 2007, Economic Security Planning, Inc., All rights reserved. 
 * 
 * $Author: dickmunroe $ 
 * $Date: 2007/12/30 13:37:34 $ 
 * 
 * Edit History: 
 * 
 *  Dick Munroe ([email protected]) 22-Dec-2007 
 *      Initial Version Created. 
 */ 
 
/** 
 * @author Dick Munroe ([email protected]) 
 * @copyright copyright @ 2004-2007, Dick Munroe, released under the GPL. 
 * @license http://www.csworks.com/publications/ModifiedNetBSD.html 
 * @version 1.0.0 
 * @package PaypalNVP 
 * 
 * Test code for checkout the ToHTML and Enumerations classes 
 */ 
 
include_once('class.EnumerationsPaypalNVP.php') ; 
include_once('class.ToHTML.php') ; 
 
$xxx = new EnumerationsPaypalNVP() ; 
$yyy = $xxx->get('DoDirectPayment') ; 
 
$zzz = ToHTML::optionsKeyValue($yyy['COUNTRYCODE'], 'United States') ; 
 
echo $zzz ; 
?> 
 
 |