The DomDocument class in php can be used to parse html/xml content and build objects that can be queried using standard functions to extract values. The following functions are quite useful: getElementsByTagName - Get all elements under a node that match a tagname getNamedItem - Get element with a particular "name=" attribute. Useful to find... Read More »
The post Php – Extract name and value of all input tags with DomDocument appeared first on BinaryTides.