In relation to the topic posted here: sending more than one variable with .load in jquery
I have a similar issue, I pass my variables to a php file which then looks to retrieve the variable's values.
(I will just post the main bits for now) My line of code reads:
$('#step').load("profile/changealbumcover.inc.php", {'album': album, 'image': image});
In my php file i have:
$album = $_GET['album']; $image = $_GET['image'];
This returns blank variable values so I tried:
$('#step').load("profile/changealbumcover.inc.php", {'?album=': album, '&image=': image});
This also returns blank variable values.
Can anyone tell me where I am going wrong?
Thanks in advance
Wayne