Kontakt Modul FAS Online

This commit is contained in:
Andreas Österreicher
2007-06-18 13:39:05 +00:00
parent 487bd18bb0
commit 922892aa12
17 changed files with 1266 additions and 344 deletions
+2 -2
View File
@@ -56,7 +56,7 @@ function phpRequestExecute()
try {
var txt = "?";
for(var i in this.parms) {
txt = txt+'&'+this.parms[i].name+'='+this.parms[i].value;
txt = txt+'&'+this.parms[i].name+'='+encodeURIComponent(this.parms[i].value);
}
//alert('sende '+txt);
//Two options here, only uncomment one of these
@@ -113,7 +113,7 @@ function phpRequestExecutePOST()
var txt = "";
for(var i in this.parms)
{
txt = txt+'&'+this.parms[i].name+'='+this.parms[i].value;
txt = txt+'&'+this.parms[i].name+'='+encodeURIComponent(this.parms[i].value);
}
//alert('sende '+txt);