I have a site I am working on and am having trouble reading a dynamically generated xml file and placing the contents of it into the rest of the form.
When the user enters his first & last name I create a xml file with the rest of the user s information. But I can't read that info into the form.
requestUrl = "xml_contact_provider.php" + "?f_name=" + document.getElementById("f_name").value + "&l_name=" + document.getElementById("l_name").value;
This xml_contact_provider.php works.... I just need help getting the info in to the form.
Thanks for reading.