Hi,
First of all, thank you in advance for anyone who could help me regarding the following problem.
I have a huge xml file that is about 90 MB in size that I need to do a search using an html form with two parameters: Area Code and telephone number.
The Area Code in the .xml file is the ac value and the phone is the ph value.
The format of the .xml file is like this:
<?xml version="1.0" encoding="utf-8"?>
<list type="full" level="all" val="">
<ac val="204">
<ph val="1981658" />
<ph val="2035765" />
<ph val="2050003" />
.
.
.
</ac>
</list>
How would I go and do this? Is the size of the file problematic? I don't have any database solution to store the values so the form would simply pickup the values directly from the .xml file stored on the webserver.
Any help on how to start with this would be appreciated.
