dizzy1 Posted August 19, 2011 Share Posted August 19, 2011 I have two sites and I need to get a value from the one site to the other for example: http://www.ThisIsAnExample.com/Findme?query=Terry&log=Garry - Which will produce the result '1' : So I've made a small Ajax Feature which should get the result '1': <html> <head> <script type="text/javascript"> function FindLostSheep() { var Fname; var Sname; var Fname = "Terry" ; var Sname = "Garry" ; var xmlhttp; if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari xmlhttp=new XMLHttpRequest(); } else {// code for IE6, IE5 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.onreadystatechange=function() { if (xmlhttp.readyState==4 && xmlhttp.status==200) { document.getElementById("MyDiv").innerHTML=xmlhttp.responseText; } } xmlhttp.open("GET","http://www.ThisIsAnExample.com/Findme?query="+Fname+"&log="+Sname+"",true); xmlhttp.send(); } </script> </head> <body> <h2>AJAX</h2> <button type="button" onclick="FindLostSheep()">Request data</button> <div id="MyDiv"></div> </body> </html> However when I run this in Firefox using Firebug I get a "302 Found" error. Thanks In Advance Dizzy Quote Link to comment https://forums.phpfreaks.com/topic/245217-ajax-get-302-found-error/ Share on other sites More sharing options...
nogray Posted August 19, 2011 Share Posted August 19, 2011 You can't use ajax cross domain because of security issues. Instead of using ajax, create a dynamic javascript file that will have variables and values and include that javascript file. Quote Link to comment https://forums.phpfreaks.com/topic/245217-ajax-get-302-found-error/#findComment-1259519 Share on other sites More sharing options...
dizzy1 Posted August 19, 2011 Author Share Posted August 19, 2011 Ohh okay, by any chance could you elaborate a bit more please, Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/245217-ajax-get-302-found-error/#findComment-1259529 Share on other sites More sharing options...
nogray Posted August 19, 2011 Share Posted August 19, 2011 In domain A, you can create a javascript file with your values e.g. var my_value = 1; Include that file in your domain B and you'll have the variable my_value as one. You can create that file using php and set the heaters to text/javascript. If you want to include it using javascript, just google it. Quote Link to comment https://forums.phpfreaks.com/topic/245217-ajax-get-302-found-error/#findComment-1259605 Share on other sites More sharing options...
dizzy1 Posted August 20, 2011 Author Share Posted August 20, 2011 I forgot to mention that it's a sub domain, is this still not possible? Thanks for you advice so far. Quote Link to comment https://forums.phpfreaks.com/topic/245217-ajax-get-302-found-error/#findComment-1259856 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.