Hello,
Is it possible to pass variables from a html form to a xml file ?
In advance, thank you.
sure. the easiest example of this is the following:
<? if ($post) { die (wddx_serialize_value($post)); } ?>
<body> <form> Text For XML:<input type=text name=post> <input type=submit> </form> </body>
Thank you very much your reply but I am afraid it seems a bit complicated to me.
What is wddx ? what code do I have to insert in the php3 file ? How do I insert the variable in the xml file ?
In advance, thank you for your cooperation.
I'm not in the habbit of spelling out each line of code. The example I gave does exactly what you asked for....just read the manual and code line-by-line if necessary.
Once you understand the function and if statement I used, you'll have a better understanding of php and ....
Learning is Good!