mathewjenkinson Posted June 10, 2010 Share Posted June 10, 2010 Hi all, Im trying to create an test environment where a php page can complete a XML document and then proceed to post said xml document to a remote server. Its based on a telephone database currently stored on a local mysql server. The user clicks the telephone number and this is then inserted into the XML document completing the document. This is then posted to a remote server. Ive written the PHP so that when the user clicks from the displayed page, it loads a link to: http://localhost/xml_post.php?tel=0123456789 but how do I get the xml_post to insert the string into the pre-written xml and then post it to the server? the xml is small and basic: <?xml version='1.0' encoding='UTF-8' ?> <username>test</username> <password>123</password> <tel_number>INSERTED STRING</tel_number> Basically it goes: HTML link-> PHP -> XML -> database any help would be appericiated thank you! Mathew Link to comment https://forums.phpfreaks.com/topic/204372-html-link-to-php-to-xml-to-http-post/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.