0
votes
6answers
3k views
Inserting data in XML file with PHP DOM
I was trying to insert new data into an existing XML file, but it's not working. Here's my xml file:
<list>
<activity>swimming</activity>
<activity>r …
1
vote
3answers
1k views
Problems with deleting XML elements using PHP DOM
Here's the XML file i'm working on:
<list>
<activity>swimming</activity>
<activity>running</activity>
<activity>soccer</activity&g …
2
votes
3answers
2k views
XPath query with PHP
Here's the XML code i'm working with:
<inventory>
<drink>
<lemonade supplier="mother" id="1">
<price>$2.50< …
2
votes
2answers
1k views
Converting pdf files to txt files with php
There's this program, pdftotext, that can convert a pdf file to a text file. To use it directly on the linux console:
pdftotext file.pdf
and it will generate a fil …
