data.push({
    name: name,
    age: age,
    address: address,
    contactnumber: contactnumber
});
var url = '../reports/student.php?data='+data;
window.open(url, '_blank');
../reports/student.php?data=[object%20Object]
Above is an object i want to send to another page so i can retrieve it and use it on the next page to generate a report. The url is looking like the one above i am not sure if this is possible and if possible how can i get the value of each data in the object.If not possible please point me to the right direction any idea is ap
 
     
     
    