Backward Compatible Changes

This commit is contained in:
japatel
2014-10-20 12:17:35 -05:00
parent 2fb68e8a7a
commit 6fb6508f9c
53 changed files with 203 additions and 206 deletions

View File

@@ -42,7 +42,7 @@ try {
</head>
<body>
<div>Saved a new credit card with id: <?php echo $card->getId();?></div>
<pre><?php echo $card->toJSON(JSON_PRETTY_PRINT);?></pre>
<pre><?php echo $card->toJSON(128);?></pre>
<a href='../index.html'>Back</a>
</body>
</html>

View File

@@ -29,7 +29,7 @@ try {
</head>
<body>
<div>Retrieving saved credit card: <?php echo $cardId;?></div>
<pre><?php echo $card->toJSON(JSON_PRETTY_PRINT);?></pre>
<pre><?php echo $card->toJSON(128);?></pre>
<a href='../index.html'>Back</a>
</body>
</html>