Search found 3 matches

by drazhar
Mon Mar 15, 2004 9:56 am
Forum: Miscellaneous
Topic: xslt_process functionality question
Replies: 3
Views: 1292

i sorted this out by the way, twig was correct

instead of specifying the destination file here
xslt_process($xslt, $sourceXML, $sourceXSL, $destXML)

leave it at NULL, and write the result to the file.

ie: $result=xslt_process($xslt, $sourceXML, $sourceXSL, NULL)
by drazhar
Wed Mar 03, 2004 4:47 am
Forum: Miscellaneous
Topic: xslt_process functionality question
Replies: 3
Views: 1292

hmmm, got a feeling that ive already tried this, but i'll give it another shot. tanx for the quick response, any other ideas?
by drazhar
Tue Mar 02, 2004 4:30 pm
Forum: Miscellaneous
Topic: xslt_process functionality question
Replies: 3
Views: 1292

xslt_process functionality question

heres the deal. Im using XSL to add/modify/remove data from an XML file. So far it works nicely, but heres the problem. when using the xslt_process function, i cant specify the same source and destination file. So far i have been renaming the newly created file, after deleting the original. I dont l...