I have a simple file to set a session variable
<?php session_start(); $_SESSION['my_name'] = "dave"; ?> and a simple file to see the stored variable
<?php session_start(); echo $_SESSION['my_name']; ?> if I call the file in the browser the session value is displayed correctly but if I make a ajax call using for example using http://requestmaker.com/ or https://www.hurl.it/ then the body response is blank. I can't see what is going wrong here its driving me nuts.
Any ideas
Cheers
Dave