Modify property of HTML tag using DOM
I have a page loaded as
new domDocument($link)
I would like to change the property of a node. Suppose I have a node :
<input type="password" name="password />开发者_如何学Go;
I would like to put the value of "password" automatically inside the input tag. Is it possible with DOM php, or another solution? Regards
精彩评论