Hi, I need JS to make HTTP request (GET). I need JS to execute .php file with ?a=0&b=1&... GET parameters. httprequest = new Image(0,0); httprequest.src = 'a/a.php?test=1'; Code (markup): Does not activate a.php file Any ideas?
hello function rg(r,i) { i = new Image(); i.src= 'a/a.php?test=1&mr=r&mi=i'; } Code (markup): this send values from your script !
Hi, Thanks for help. I already got it resolved. document.write('<img src="a.php?values='window.location'" alt="" style="display: none;" />');