?>
		 <span class="verify_subtitle" style="font-family: Arial, Helvetica, sans-serif !important;">Your Payment was Unsuccessful.</span>
		<span class="verify_subtitle"  style="font-family: Arial, Helvetica, sans-serif !important;">Please Try Again....!</span>
		<span class="verify_subtitle"  style="font-family: Arial, Helvetica, sans-serif !important;"><a href="free-membership-registration-payment.php" style="font-size:24px !important;">Back</a></span>
<?php		
	}
	
	
	
	
?>			
	
            <?php } ?>
			<div id="raw">
              <div style="width: 45%; margin-right: 2em; background: #f3f3f3; float:left; overflow: scroll; white-space: nowrap;"> <?php echo $service->getLastUrl(); ?><br>
                <pre id="request_dump"></pre>
              </div>
              <div style="width: 45%; margin-right: 2em; background: #f3f3f3; float:left; overflow: scroll; white-space: nowrap;">
                <pre id="response_dump"></pre>
              </div>
            </div>
			
            <script>
            jQuery('#raw').hide();
            // no body for GetAccessCodeResult
            var response_dump = JSON.stringify(JSON.parse('<?php echo $service->getLastResponse(); ?>'), null, 4); 
            jQuery('#response_dump').html(response_dump);
            
            jQuery( "#showraw" ).click(function() {     
                if(jQuery('#raw:visible').length)
示例#2
0
文件: index.php 项目: hchavez/ez
    </div>

    <div id="maincontent">
       
           <h2> Your Payment sucessfully Done.</h2>
    </div>

        <br />
        <br />
    
        <br />
        <br />
        
        <div id="raw">
            <div style="width: 45%; margin-right: 2em; background: #f3f3f3; float:left; overflow: scroll; white-space: nowrap;">
                <?php echo $service->getLastUrl(); ?><br>
                <pre id="request_dump"></pre>
            </div>
            <div style="width: 45%; margin-right: 2em; background: #f3f3f3; float:left; overflow: scroll; white-space: nowrap;"><pre id="response_dump"></pre></div>
        </div>
        <script>
            jQuery('#raw').hide();
            var request_dump = JSON.stringify(JSON.parse('<?php echo $service->getLastRequest(); ?>'), null, 4); 
            jQuery('#request_dump').html(request_dump);
            var response_dump = JSON.stringify(JSON.parse('<?php echo $service->getLastResponse(); ?>'), null, 4); 
            jQuery('#response_dump').html(response_dump);
            
            jQuery( "#showraw" ).click(function() {     
                if(jQuery('#raw:visible').length)
                    jQuery('#raw').hide();
                else