Hi Klas,
I use this extension, into link part of free button I choose "Javascript custom" and add following code:
test()
Into a JavaScript code I add following code:
<iframe src="JavaScript:''" style="height:0px" name="iframename"></iframe>
function test(){
window.frames['iframename'].location.replace('http://....../test1.php');
return false;
}
This
solution don't work. The aim is just to call php script with button
without leave the page. The execution of php script must be performed in
a transparent way for user.
Thank you in advance for your help.
Gérard