Possible Duplicate:
POST XML to URL with PHP and Handle Response
There is an XML to return city list by POSTing province id. (it accepts the id by POST) http://example.com/get_city_list.xml
<cities>
<city>
<id></id>
<name></name>
</city>
<city>
<id></id>
<name></name>
</city>
<city>
<id></id>
<name></name>
</city>
<cities>
How can I send out the province id (by POST REQUEST) to the XML?
I am using php 5