Skip to content

Instantly share code, notes, and snippets.

@itsbalamurali
Created February 3, 2014 06:36
Show Gist options
  • Save itsbalamurali/8779667 to your computer and use it in GitHub Desktop.
Save itsbalamurali/8779667 to your computer and use it in GitHub Desktop.

#function i have like this

$display_output = '<table width="100%" border="0" cellspacing="2" cellpadding="3" class="paymenttable"> '.
  			'<tr>'.
			'	<td width="160" class="paytable1"><img src="img/google_wallet_logo.png"></td> '.
			'	<td class="paytable2" width="100%">' . GMSG_GC_DESCRIPTION . '</td> '.
			'	<br><input id="runDemoButton"  type="image" src="themes/' . $this->setts['default_theme'] . '/img/system/but_pay.gif" onclick="DemoButton("'.$jwtToken.'");" border="0">'.
		  	'</tr></table>';

#this outputs:

<table width="100%" border="0" cellspacing="2" cellpadding="3" class="paymenttable"> <tr>	<td width="160" class="paytable1"><img src="img/google_wallet_logo.png"></td> 	<td class="paytable2" width="100%">Click on the button on the right to proceed to Google Checkout</td> 	<br><input id="runDemoButton"  type="image" src="themes/modern_silver/img/system/but_pay.gif" onclick="DemoButton("eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiIwMDc2NDU2NTAzMjM3OTc0MjU2NSIsImF1ZCI6Ikdvb2dsZSIsInR5cCI6Imdvb2dsZVwvcGF5bWVudHNcL2luYXBwXC9pdGVtXC92MSIsImV4cCI6MTM5MTQxMjcwOCwiaWF0IjoxMzkxNDA5MTA4LCJyZXF1ZXN0Ijp7Im5hbWUiOiJCaXRDb2luIEV4Y2hhbmdlIGFuZCBMb2FuczogUm91bmQgVGFibGUgb2YgTGVuZGluZyAtIENyZWRpdCBZb3VyIEFjY291bnQiLCJkZXNjcmlwdGlvbiI6IkJpdENvaW4gRXhjaGFuZ2UgYW5kIExvYW5zOiBSb3VuZCBUYWJsZSBvZiBMZW5kaW5nIC0gQ3JlZGl0IFlvdXIgQWNjb3VudCIsInByaWNlIjoiMTAwIiwiY3VycmVuY3lDb2RlIjoiR0JQIiwic2VsbGVyRGF0YSI6Ijc3VEJMMlRCTDc3VEJMMCJ9fQ.6sHfhL8T7N-FHfEu7Cxvm3IF5CgirLYP22gkaNVXNXc");" border="0"></tr></table>

#what i want is:

<table width="100%" border="0" cellspacing="2" cellpadding="3" class="paymenttable"> <tr>	<td width="160" class="paytable1"><img src="img/google_wallet_logo.png"></td> 	<td class="paytable2" width="100%">Click on the button on the right to proceed to Google Checkout</td> 	<br><input id="runDemoButton"  type="image" src="themes/modern_silver/img/system/but_pay.gif" onclick='DemoButton("eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiIwMDc2NDU2NTAzMjM3OTc0MjU2NSIsImF1ZCI6Ikdvb2dsZSIsInR5cCI6Imdvb2dsZVwvcGF5bWVudHNcL2luYXBwXC9pdGVtXC92MSIsImV4cCI6MTM5MTQxMjcwOCwiaWF0IjoxMzkxNDA5MTA4LCJyZXF1ZXN0Ijp7Im5hbWUiOiJCaXRDb2luIEV4Y2hhbmdlIGFuZCBMb2FuczogUm91bmQgVGFibGUgb2YgTGVuZGluZyAtIENyZWRpdCBZb3VyIEFjY291bnQiLCJkZXNjcmlwdGlvbiI6IkJpdENvaW4gRXhjaGFuZ2UgYW5kIExvYW5zOiBSb3VuZCBUYWJsZSBvZiBMZW5kaW5nIC0gQ3JlZGl0IFlvdXIgQWNjb3VudCIsInByaWNlIjoiMTAwIiwiY3VycmVuY3lDb2RlIjoiR0JQIiwic2VsbGVyRGF0YSI6Ijc3VEJMMlRCTDc3VEJMMCJ9fQ.6sHfhL8T7N-FHfEu7Cxvm3IF5CgirLYP22gkaNVXNXc");' border="0"></tr></table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment