Hi
I've got one xml doc ( liste.php ) who is generated with my database.
1 / how specify an url to an external xsl file for html output.
I can put this in my xml file :
<?xml-stylesheet type='text/xsl' href='$xsl_file' ?>
but it's doesn't work because access is denied.
There is no way to mix an xml file with an xsl without specifing in xml doc, the xsl url?
2/ I want submit information via 'post' methode to my 'liste.php' xml doc ( to make filters on my view). who to do this with an xml formatted post var like ?
$post_var="
<packet>
<criteria name="city" op="=" value="los angeles" />
</packet>";
thank's