Hi,
I'm in a bit of a pickle to say the least.
I've come up with an idea which I'd like to implement, but haven't a clue how to go about doing such a thing.
Basically what I want to do is have an XML script, but certain parts of the script will need to be mapped to a Database field.
So here's a sample of my XML File.
Code:
<script>
<question>
<name>
Dear #FirstName#
</name>
</question>
<question>
<name>
Dear Mr. #Surname#
</name>
</question>
</script.
So what I need to do is to have the parts #FirstName# and #Surname# updated to the customer actual first and second name. I'll have an ID for the customer in the database which I'll need to use.
So has anyone any ideas on how to achieve this...
I thought that XSLT might have the answer...
Thanks,
Eoin...